程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Leetcode每日一題(python實現)01-兩數之和

編輯:Python

從2022.6.19開始到秋招結束,我將每天更新至少一題leetcode自己的理解到這個blog上,立貼為證。

1.代碼實現

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

2.理解和說明

enumerate函數:可以得到一個可迭代對象的索引和元素,把元素和索引用一個字典儲存起來,每次計算target-num,如果這個值在字典的key中說明列表裡面存在兩個數字之和等於target,返回兩個數字再數組裡面的下標。

3.時間和空間復雜度


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved