1. 两数之和

难度简单10641
给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 的那 两个 整数,并返回它们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。
你可以按任意顺序返回答案。

示例 1:
输入:nums = [2,7,11,15], target = 9
输出:[0,1]
解释:因为 nums[0] + nums[1] == 9 ,返回 [0, 1] 。

示例 2:
输入:nums = [3,2,4], target = 6
输出:[1,2]

示例 3:
输入:nums = [3,3], target = 6
输出:[0,1]


提示:

  • 2 <= nums.length <= 10
  • -10 <= nums[i] <= 10
  • -10 <= target <= 10
  • 只会存在一个有效答案
    1. '''双重for循环'''
    2. class Solution:
    3. def twoSum(self, nums: List[int], target: int) -> List[int]:
    4. for i in range(len(nums)-1):
    5. base = nums[i]
    6. for j in range(i+1,len(nums)):
    7. if base+nums[j] == target:
    8. return [i,j]
    1. class Solution:
    2. def twoSum(self, nums: List[int], target: int) -> List[int]:
    3. for i in range(len(nums) - 1):
    4. base = nums[i]
    5. other = target - base
    6. if other in nums[i + 1:]:
    7. # 这里注意index设置start,避免出现target = 6,[3,3]返回[0,0]的错误
    8. return [i, nums.index(other, i + 1)]
    ```python class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]:
      tmp = {}
      for k, v in enumerate(nums):
          if target - v in tmp:
              return [tmp[target - v], k]
          tmp[v] = k
    

```

Python enumerate() 函数

https://www.runoob.com/python/python-func-enumerate.html