-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLeetCode1.java
More file actions
38 lines (35 loc) · 1.05 KB
/
LeetCode1.java
File metadata and controls
38 lines (35 loc) · 1.05 KB
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
36
37
38
import java.util.Map;
import java.util.HashMap;
public class LeetCode1 {
public static void main(String[] args) {
int[] nums = { 2, 7, 11, 15 };
int target = 9;
for (int n : new Solution1_2().twoSum(nums, target)) {
System.out.println(n);
}
}
}
class Solution1_1 {
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];
}
}
class Solution1_2 {
public int[] twoSum(int[] nums, int target) {
Map<Integer, Integer> hashtable = new HashMap<Integer, Integer>();
for (int i = 0; i < nums.length; ++i) {
if (hashtable.containsKey(target - nums[i])) {
return new int[] { hashtable.get(target - nums[i]), i };
}
hashtable.put(nums[i], i);
}
return new int[0];
}
}