leetcode刷题twoSum两数之和(Python)

Posted IT界的测试混子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode刷题twoSum两数之和(Python)相关的知识,希望对你有一定的参考价值。

两数之和

给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 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 <= 104
-109 <= nums[i] <= 109
-109 <= target <= 109
只会存在一个有效答案
进阶:你可以想出一个时间复杂度小于 O(n2) 的算法吗?

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

暴力破解

  • 定义一个列表存储结果下标。
  • 使用双层循环。
    第一层循环i,
    第二层循环j,从i+1开始。
  • 如果 i 等于 target-当前下标为j的值。即两数相之和等于 target。将下标添加到列表中。

    target = 8
    红色字体:符合目标的值。
    灰色方块:已循环
    蓝色方块:第一层循环
    橙色方块:第二层循环
class Solution:
    def twoSum(self, nums: List[int], target: int) -> List[int]:
        res = []
        for i in range(len(nums)):
            for j in range(i+1,len(nums)):
                if nums[i] == target - nums[j]:
                    res.append(i)
                    res.append(j)
        return res

if __name__ == '__main__':
    s = Solution()
    nums = [3,3]
    target = 6
    res = s.twoSum(nums,target)
    assert res == [0,1]

    nums = [3, 2, 4]
    tagert = 6
    res = s.twoSum(nums,target)
    assert res == [1,2]

字典

  • 定义一个列表res存储结果下标。
  • 定义一个字典dict,存储已查找过的值。
    target - nums[0] = 8 - 6 = 2,查找dict,dic中没有key=2,将dict[nums[0]]=0存入字典
    target - nums[1] = 8 - 3 = 5,查找dict,dic中没有key=5,将dict[nums[1]]=1存入字典
    target - nums[2] = 8 - 8 = 0,查找dict,dic中没有key=0,将dict[nums[2]]=2存入字典
    target - nums[3] = 8 - 2 = 6,查找dict,dic中有key=6,将dict[6]、当前index=3存入res列表
    target - nums[4] = 8 - 1 = 7,查找dict,dic中没有key=7,将dict[nums[4]]=4存入字典
#字典
class Solution2:
    def twoSum(self, nums: List[int], target: int) -> List[int]:
        dict = 
        res = []
        for i,v in enumerate(nums):
            if dict.get(target-v) is not None:
                res.append(dict[target-v])
                res.append(i)
            else:
                dict[v] = i
        return res

以上是关于leetcode刷题twoSum两数之和(Python)的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode刷题-001两数之和

leetcode刷题记录(JAVA&Python)

leetCode:twoSum 两数之和 JAVA实现

LeetCode 两数之和 twoSum

leetcode刷题记录

leetcode_两数之和