qiujichu

问题描述

给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。

你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。

示例:

给定 nums = [2, 7, 11, 15], target = 9

因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]

解题思路

1.暴力破解 双重for循环

class Solution(object):
    def twoSum(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: List[int]
        """
        a=len(nums)
        for i in range(a):
            for j in range(i+1,a):
                if nums[i]+nums[j]==target:
                    return [i,j]

结果为

2.使用字典操作

class Solution(object):
    def twoSum(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: List[int]
        """
	hashmap = {}
        for index, num in enumerate(nums):
            another_num = target - num
            if another_num in hashmap:
                return [hashmap[another_num], index]
            hashmap[num] = index

结果为:

相关文章:

  • 2020-03-02
  • 2020-10-18
  • 2020-01-12
  • 2020-04-15
  • 2018-05-24
  • 2018-06-03
  • 2018-08-19
  • 2018-05-10
猜你喜欢
  • 2019-08-08
  • 2018-12-20
  • 2020-07-15
  • 2021-11-11
  • 2021-07-05
  • 2019-08-06
  • 2021-07-06
相关资源
相似解决方案