-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path15-3Sum.cs
More file actions
43 lines (40 loc) · 1.03 KB
/
Copy path15-3Sum.cs
File metadata and controls
43 lines (40 loc) · 1.03 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
39
40
41
42
43
public class Solution
{
public List<List<int>> ThreeSum(int[] nums)
{
var res = new List<List<int>>();
Array.Sort(nums);
for (int i = 0; i < nums.Length; i++)
{
if (nums[i] > 0)
break;
if (i > 0 && nums[i] == nums[i - 1])
continue;
int l = i + 1,
r = nums.Length - 1;
while (l < r)
{
int curSum = nums[i] + nums[l] + nums[r];
if (curSum > 0)
{
r--;
}
else if (curSum < 0)
{
l++;
}
else
{
res.Add(new List<int> { nums[i], nums[l], nums[r] });
l++;
r--;
while (l < r && nums[l] == nums[l - 1])
{
l++;
}
}
}
}
return res;
}
}