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

两数之和

时间:2018-11-28 13:19:18      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:col   .com   rom   roman   pre   font   esc   解答   https   

题目

题目

解答

python

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

 

两数之和

标签:col   .com   rom   roman   pre   font   esc   解答   https   

原文地址:https://www.cnblogs.com/xiaojianliu/p/10031473.html

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