-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsolution.py
64 lines (62 loc) · 1.88 KB
/
solution.py
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
"""
318 / 318 test cases passed.
Runtime: 468 ms
Memory Usage: 17.9 MB
"""
class Solution:
def threeSum(self, nums: List[int]) -> List[List[int]]:
ans = []
n = len(nums)
if n < 3:
return ans
nums.sort()
for i in range(n):
if nums[i] > 0:
return ans
if i > 0 and nums[i] == nums[i - 1]:
continue
l, r = i + 1, n - 1
while l < r:
s = nums[i] + nums[l] + nums[r]
if s == 0:
ans.append([nums[i], nums[l], nums[r]])
while l < r and nums[l] == nums[l + 1]:
l += 1
while l < r and nums[r] == nums[r - 1]:
r -= 1
l += 1
r -= 1
elif s > 0:
r -= 1
else:
l += 1
return ans
"""
318 / 318 test cases passed.
Runtime: 568 ms
Memory Usage: 17.7 MB
"""
class Solution2:
def threeSum(self, nums: List[int]) -> List[List[int]]:
ans = []
n = len(nums)
if n < 3:
return ans
nums.sort()
for first in range(n):
if nums[first] > 0:
return ans
if first > 0 and nums[first] == nums[first - 1]:
continue
third = n - 1
target = -nums[first]
for second in range(first + 1, n):
if second > first + 1 and nums[second] == nums[second - 1]:
continue
while second < third and nums[second] + nums[third] > target:
third -= 1
if third == second:
break
if nums[second] + nums[third] == target:
ans.append([nums[first], nums[second], nums[third]])
return ans