码迷,mamicode.com
首页 > 其他好文 > 详细

[Leetcode]#1 Two Sum

时间:2019-01-11 19:02:03      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:for   turn   code   target   list   ==   timeout   class   elf   

class Solution:
    def twoSum(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: List[int]
        """

        for index1 in range(len(nums)):
            for index2 in range(index1 + 1, len(nums)):
                if nums[index1] + nums[index2] == target:
                    return [index1, index2]

 

 

 

还以为必然timeout 结果并没有 不过7秒多也惨不忍睹了

[Leetcode]#1 Two Sum

标签:for   turn   code   target   list   ==   timeout   class   elf   

原文地址:https://www.cnblogs.com/alfredsun/p/10256627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!