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

[LeetCode]题1:two sum

时间:2018-07-05 15:51:29      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:number   NPU   letter   数字   aci   完成   white   style   循环   

 

Example:

Given nums = [2, 7, 11, 15], target = 9,

Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

You may assume that each input would have exactly one solution, and you may not use the same element twice.

 这道题穷举法时间复杂度o(n2)太高了,通过转换为减法利用字典查找数字可以更快的完成。字典初始化和查找可合并成一个循环。另一种想法是对给定数组进行排序,首尾不断相加,直到找到指定的和。

class Solution:
    def twoSum(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: List[int]
        """
        dict={}
        for i , num in enumerate(nums):
            if(target-num)in dict:
                return(dict[target-num],i)
            else:
                dict[num] = i

 




[LeetCode]题1:two sum

标签:number   NPU   letter   数字   aci   完成   white   style   循环   

原文地址:https://www.cnblogs.com/a-little-v/p/9261180.html

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