-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3Sum.cs
40 lines (39 loc) · 1.38 KB
/
3Sum.cs
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
39
40
/*
Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0.
Notice that the solution set must not contain duplicate triplets.
*/
public class Solution {
public IList<IList<int>> ThreeSum(int[] nums) {
Array.Sort(nums);
IList<IList<int>> result = new List<IList<int>>();
for (int i = 0; i < nums.Length - 2; i++)
{
if (i == 0 || (i > 0 && nums[i] != nums[i - 1]))
{
int low = i + 1;
int high = nums.Length - 1;
int sum = 0 - nums[i];
while (low < high)
{
if (nums[low] + nums[high] == sum)
{
result.Add(new List<int> {nums[i], nums[low], nums[high]});
while (low < high && nums[low] == nums[low + 1]) low++;
while (low < high && nums[high] == nums[high - 1]) high--;
low++;
high--;
}
else if (nums[low] + nums[high] < sum)
{
low++;
}
else
{
high--;
}
}
}
}
return result;
}
}