题目描述
给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 的那 两个 整数,并返回它们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。
你可以按任意顺序返回答案。
原题请参考链接https://leetcode-cn.com/problems/two-sum
题解
方法一 【暴力破解】
class Solution:
def twoSum(self, nums: List[int], target: int) -> List[int]:
l = len(nums)
for i in range(l):
for j in range(l):
if nums[i] + nums[j] == target and i != j:
return [i,j]
return []
方法二 【哈希表】
class Solution:
def twoSum(self, nums: List[int], target: int) -> List[int]:
hashtable = dict()
for index,value in enumerate(nums):
if target-value in hashtable:
return [index,hashtable[target-value]]
hashtable[value] = index
return []