"""
給定乙個整數陣列 nums 和乙個目標值 target,請你在該陣列中找出和為目標值的那 兩個 整數,並返回他們的陣列下標。
你可以假設每種輸入只會對應乙個答案。但是,你不能重複利用這個陣列中同樣的元素。
示例:給定 nums = [2, 7, 11, 15], target = 9
因為 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]
"""# 方法一
import copy
deftwosum
(nums, target):if
len(nums)==0
and target ==0:
return
iflen
(nums)==0
:return
dic =
for i, data in
enumerate
(nums)
: dic[i]
= data
# dic =
index =
res =
for index_, value in dic.items():
res = copy.copy(dic)
res.pop(index_)
if target-value in res.values():
return index
print
(twosum([3
,3],
6))# 方法二
deftwosum
(nums, target)
: hashmap =
forid
, num in
enumerate
(nums)
: hashmap[num]=id
index =
for i, num in
enumerate
(nums)
: j = hashmap.get(target - num)
if j is
notnone
and i != j:
if i < j:
(i,j)
)return index
print
(twosum([3
,2,4
,3],
6))
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 但是通過檢視官方的...