两数之和

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

你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/two-sum

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

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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/two-sum
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

暴力破解法

这个是自己写的
用两个for循环

class Solution:
    def twoSum(self, nums: List[int], target: int) -> List[int]:
        m = len(nums)
        for i in range(m):
            for j in range(m):
                if target == nums[i] + nums[j] and i != j:
                    return [i,j]

对长度短的列表适合,太长会超过时间。
在最后一个测试输入的时候,时间超过限制。
没想到好的办法,看别人的答案。

后面这是看的评论的答案

用一个字典来存索引的位置

class Solution:
    def twoSum(self, nums: List[int], target: int) -> List[int]:
        m = len(nums)
        h = {}
        for i in range(m):
            b = target - nums[i]
            if b not in h:
                h[nums[i]] = i
            else:
                return[h[b],i]

网上说这叫哈希表(虽然还不知道是什么)。

你可能感兴趣的:(两数之和)