两数之和
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
以上是关于两数之和的主要内容,如果未能解决你的问题,请参考以下文章