Easy
, Array/String
給定一個(gè)整數(shù)數(shù)列和一個(gè)目標(biāo)和,尋找數(shù)列中的兩個(gè)數(shù)加起來(lái)等于目標(biāo)值,返回兩數(shù)的索引潮改。假設(shè)只有一個(gè)解,同一個(gè)數(shù)不能被使用兩次腹暖。
Example:
Given nums = [2, 7, 11, 15], target = 9,
Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].
利用字典存儲(chǔ)實(shí)現(xiàn)復(fù)雜度為O(n)
的算法
class Solution(object):
def twoSum(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: List[int]
"""
if len(nums) < 2:
return False
pair_dict = {}
for i, num in enumerate(nums):
if num in pair_dict:
return [pair_dict[num], i]
else:
#存儲(chǔ)遍歷過(guò)程當(dāng)前值得對(duì)應(yīng)值
pair_dict[target - num] = i