LeetCode1:Two Sum

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

注:
最精华的思想是:
x = nums[i] dict[x] = i
取出第i个数字(以0为开头),把它的值装载进dict中成为key,而原来的序号i变成了value
最终就能够轻松的取出,value的值,即数列中的序号。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Given an array of integers, return indices of the two num...
    lemooon阅读 1,873评论 0 0
  • 背景 一年多以前我在知乎上答了有关LeetCode的问题, 分享了一些自己做题目的经验。 张土汪:刷leetcod...
    土汪阅读 14,354评论 0 33
  • 文章作者:Tyan博客:noahsnail.com | CSDN | 简书 1. 问题描述 Given an ar...
    SnailTyan阅读 3,247评论 0 0
  • 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的...
    mztkenan阅读 2,939评论 0 0
  • 问题:Given an array of integers, returnindicesof the two nu...
    Yinmu阅读 1,549评论 0 0

友情链接更多精彩内容