-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThreeSum.java
More file actions
38 lines (31 loc) · 1.07 KB
/
Copy pathThreeSum.java
File metadata and controls
38 lines (31 loc) · 1.07 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.ArrayList;
import java.util.Arrays;
import java.util.List;
public class ThreeSum {
public List<List<Integer>> threeSum(int[] nums) {
List<List<Integer>> arr = new ArrayList<>();
Arrays.sort(nums);
for (int i = 0; i < nums.length; i++) {
if (i == 0 || i > 0 && nums[i] != nums[i - 1]) {
int j = i + 1, k = nums.length - 1, target = 0 - nums[i];
while (j < k) {
int sum = nums[j] + nums[k];
if (target == sum) {
arr.add(Arrays.asList(nums[i], nums[j], nums[k]));
while (j < k && nums[j] == nums[j + 1])
j++;
while (j < k && nums[k] == nums[k - 1])
k--;
j++;
k--;
} else if (sum > target) {
k--;
} else {
j++;
}
}
}
}
return arr;
}
}