-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.java
More file actions
26 lines (24 loc) · 762 Bytes
/
1.java
File metadata and controls
26 lines (24 loc) · 762 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
import java.util.*;
class Problem1 {
public int[] twoSum(int[] nums, int target) {
// O(n) runtime solution
Map<Integer, Integer> map = new HashMap<>();
for (int i = 0; i < nums.length; i++){
if (map.containsKey(target-nums[i]))
return new int[] {map.get(target-nums[i]), i};
map.put(nums[i], i);
}
return new int[] {-1, -1};
/**
*** O(n^2) runtime solution
for (int i = 0; i < nums.length-1; i++){
for (int j = i+1; j < nums.length; j++){
if (nums[i] + nums[j] == target){
return new int[] {j, i};
}
}
}
return new int[] {-1, -1};
**/
}
}