题解 | #三数之和#

三数之和

http://www.nowcoder.com/practice/345e2ed5f81d4017bbb8cc6055b0b711

采用双指针的方法,并进行排序保证没有重复

class Solution:
    def threeSum(self , num: List[int]) -> List[List[int]]:
        # write code here
        n=len(num)
        res=[]
        num.sort()
        for first in range(n):
            if first >0 and num[first]==num[first-1]:
                continue
            third=n-1
            target=-num[first]
            for second in range(first+1,n):
                if second>first+1 and num[second]==num[second-1]:
                    continue
                while second<third and num[second]+num[third]>target:
                    third-=1
                if second==third:
                    break
                if num[second]+num[third]==target:
                    res.append([num[first],num[second],num[third]])
        return res
      
        
全部评论

相关推荐

喜欢走神的孤勇者练习时长两年半:池是池,发是发,我曾池,我现黑
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务