两数之和

Posted xiaojianliu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两数之和相关的知识,希望对你有一定的参考价值。

题目

题目

解答

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

 

以上是关于两数之和的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript笔试题(js高级代码片段)

数组练习题:两数之和三数之和四数之和

LeetCode第5天 - 283. 移动零 | 167. 两数之和 II - 输入有序数组

01两数之和

01两数之和

两数之和