-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path15.py
27 lines (25 loc) · 851 Bytes
/
15.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
# https://neetcode.io/problems/three-integer-sum
# https://leetcode.com/problems/3sum/description/
from typing import List
class Solution:
def threeSum(self, nums: List[int]) -> List[List[int]]:
nums.sort()
res = []
for i, n in enumerate(nums):
if n > 0: break
if i > 0 and n == nums[i - 1]: continue
l, r = i + 1, len(nums) - 1
while l < r:
ln, rn = nums[l], nums[r]
threesum = ln + rn + n
if threesum == 0:
res.append([ln, rn, n])
r -= 1
l += 1
while nums[l] == nums[l-1] and l < r:
l += 1
elif threesum > 0:
r -= 1
else:
l += 1
return res