美文网首页
两数之和

两数之和

作者: 知识分享share | 来源:发表于2020-06-15 10:17 被阅读0次

    两数之和

    class Solution:
        def twoSum(self,nums,target):
            """
            :type nums:List[int]
            :type target:int
            :rtype:List[int]
            """
            for i in range(len(nums)):
                number=target-nums[i]
                for j in range(i+1,len(nums)):
                    if nums[j]==number:
                        return [i,j]
    a = Solution()
    print(a.twoSum([1,2,3],4))
    

    相关文章

      网友评论

          本文标题:两数之和

          本文链接:https://www.haomeiwen.com/subject/kkccxktx.html