1 兩數之和

2021-10-01 19:23:38 字數 1301 閱讀 7278

給定乙個整數陣列 nums 和乙個目標值 target,請你在該陣列中找出和為目標值的那 兩個 整數,並返回他們的陣列下標。

你可以假設每種輸入只會對應乙個答案。但是,你不能重複利用這個陣列中同樣的元素。

示例:給定 nums = [2, 7, 11, 15], target = 9

因為 nums[0] + nums[1] = 2 + 7 = 9

所以返回 [0, 1]

class

solution

: def twosum

(self, nums: list[int]

, target: int)

-> list[int]

: hashmap=

for index,value in

enumerate

(nums)

:if target-value in hashmap:

return

[hashmap[target-value]

,index]

hashmap[value]

=index

1、函式定義 def twosum(self, nums: list[int], target: int) -> list[int]:末尾的-> list[int]:是什麼意思?

->出現在函式定義的函式名後面,為函式新增元資料,用來描述函式的返回型別。例如:

def add(x,y) -> int:

return x+y

2、enumerate() 函式用於將乙個可遍歷的資料物件(如列表、元組或字串)組合為乙個索引序列,同時列出資料和資料下標,一般用在 for 迴圈當中。例如:

>>>seq = ['one', 'two', 'three']

>>> for i, element in enumerate(seq):

... print i, element

...

0 one

1 two

2 three

3、字典(dictionary)的用法

字典是一種可變容器模型,且可儲存任意型別物件。格式如下:

d =
鍵一般是唯一的,不允許同乙個鍵出現兩次。建立時如果同乙個鍵被賦值兩次,後乙個值會被記住並替換前面的,值不需要唯一。例如:

dict = 

>>> dict['b']

'3'

1 兩數之和

給定乙個整數陣列和乙個目標值,找出陣列中和為目標值的兩個數。你可以假設每個輸入只對應一種答案,且同樣的元素不能被重複利用。示例 給定 nums 2,7,11,15 target 9 因為 nums 0 nums 1 2 7 9 所以返回 0,1 解class solution hash nums i...

1 兩數之和

給定乙個整數陣列和乙個目標值,找出陣列中和為目標值的兩個數。你可以假設每個輸入只對應一種答案,且同樣的元素不能被重複利用。示例 給定 nums 2,7,11,15 target 9 因為 nums 0 nums 1 2 7 9 所以返回 0,1 由於元素不能重複利用,所以使用j i 1,通過雙迴圈,...

1 兩數之和

你可以假設每個輸入只對應一種答案,且同樣的元素不能被重複利用。public int twosum int nums,int target throw new illegalargumentexception no two sum solution 這樣的時間複雜度為0 nlogn 但是通過檢視官方的...