題目:給定乙個整數陣列nums和乙個目標值target
,請你在該陣列中找出和為目標值的那兩個整數,並返回他們的陣列下標。
你可以假設每種輸入只會對應乙個答案。但是,你不能重複利用這個陣列中同樣的元素。
難度:簡單
示例:
給定 nums = [2, 7, 11, 15], target = 9
因為 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]
解題思路採用最笨的辦法,所有可能的兩個數相加,直到找到相加的兩個數等於target為止
執行用時 :3160 ms
記憶體消耗 :13.3 mb
把陣列轉變成字典儲存形式,記憶體消耗會大些,但是執行的時間是比較短的
執行用時 :12 ms
記憶體消耗 :13.9 mb
**:
class solution(object):
def twosum(self, nums, target):
""":type nums: list[int]
:type target: int
:rtype: list[int]
"""#方法一
newnums=
m=1for i in range(len(nums)):
for j in range(m,len(nums)):
if(nums[i]+nums[j]==target):
return newnums
m=m+1
方法二:
class solution(object):
def twosum(self, nums, target):
""":type nums: list[int]
:type target: int
:rtype: list[int]
"""#方法二
#把陣列轉換成字典
dict={}
index=0
for i in nums:
dict[i]=index
index=index+1
newnums=
for i in range(len(nums)):
a = target-nums[i] #target減去nums[i]
if a in dict: #查詢字典中是否有key=a
if(dict[a]!=i): #避免數的下表相同
return newnums
執行結果: 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 但是通過檢視官方的...