從2022.6.19開始到秋招結束,我將每天更新至少一題leetcode自己的理解到這個blog上,立貼為證。
class Solution:
def twoSum(self, nums, target):
""" :type nums: List[int] :type target: int :rtype: List[int] """
hashmap = {
}
for index, num in enumerate(nums):
num2 = target - num
if num2 in hashmap:
return [hashmap[num2], index]
hashmap[num] = index
return None
enumerate函數:可以得到一個可迭代對象的索引和元素,把元素和索引用一個字典儲存起來,每次計算target-num,如果這個值在字典的key中說明列表裡面存在兩個數字之和等於target,返回兩個數字再數組裡面的下標。