Skip to content

Instantly share code, notes, and snippets.

@liketheflower
Created December 11, 2019 17:22
Show Gist options
  • Save liketheflower/f0dd64bc1db784ca4212b3bee4d23d6a to your computer and use it in GitHub Desktop.
Save liketheflower/f0dd64bc1db784ca4212b3bee4d23d6a to your computer and use it in GitHub Desktop.
class Solution:
def threeSum(self, nums: List[int]) -> List[List[int]]:
res = []
nums.sort()
for i in range(len(nums)-2):
if i > 0 and nums[i] == nums[i-1]:
continue
l, r = i+1, len(nums)-1
while l < r:
s = nums[i] + nums[l] + nums[r]
if s < 0:
l +=1
elif s > 0:
r -= 1
else:
res.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
return res
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment