-
Notifications
You must be signed in to change notification settings - Fork 0
/
TwoSum.java
35 lines (27 loc) · 888 Bytes
/
TwoSum.java
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
29
30
31
32
33
34
35
//Solution one, iteration one by one each number to see if they add up to target number
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 new int[0];
}
}
//Solution two, hashMap
class Solution {
public int[] twoSum(int[] nums, int target) {
Map<Integer, Integer> numMap = new HashMap<>();
for(int i = 0 ; i < nums.length ; i++){
int comp = target - nums[i];
if(numMap.containsKey(comp)){
return new int[]{numMap.get(comp), i};
}
numMap.put(nums[i], i);
}
return new int[]{};
}
}