-
Notifications
You must be signed in to change notification settings - Fork 0
/
15. 3Sum.java
33 lines (28 loc) · 887 Bytes
/
15. 3Sum.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
class Solution {
public List<List<Integer>> threeSum(int[] nums) {
List<List<Integer>> res = new ArrayList<>();
Arrays.sort(nums);
for (int i = 0; i < nums.length; i++) {
if (i > 0 && nums[i] == nums[i-1]) {
continue;
}
int j = i + 1;
int k = nums.length - 1;
while (j < k) {
int total = nums[i] + nums[j] + nums[k];
if (total > 0) {
k--;
} else if (total < 0) {
j++;
} else {
res.add(Arrays.asList(nums[i], nums[j], nums[k]));
j++;
while (nums[j] == nums[j-1] && j < k) {
j++;
}
}
}
}
return res;
}
}