-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask_two_sum
More file actions
28 lines (26 loc) · 809 Bytes
/
task_two_sum
File metadata and controls
28 lines (26 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# using hashmap
class Solution {
public int[] twoSum(int[] nums, int target) {
Map <Integer , Integer> complements = new HashMap<>();
for (int i = 0 ; i< nums.length;i++){
Integer complementIndex = complements.get(nums[i]);
if (complementIndex != null){
return new int []{i , complementIndex};
}
complements.put(target - nums [i] , i );
}
return nums;
}
}
# using nested loops
class Solution{
public int[] twoSum (int[] nums, int target){
for (int i=0; i<nums.length;i++){
for (int j=i+1; j< nums.length; j++){
if (nums[i] + nums[j] == target){
return new int[]{i,j};
}
}
}
return nums;
}