码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode之两数相加解题思路

时间:2020-06-06 16:58:28      阅读:51      评论:0      收藏:0      [点我收藏+]

标签:不能   字典   range   解题思路   数组下标   假设   for   class   code   

问题描述

给定一个整数数组 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

结果为:
技术图片

关注公众号“python做些事” 掌握更多力扣算法,轻松拿到大厂offer

技术图片

leetcode之两数相加解题思路

标签:不能   字典   range   解题思路   数组下标   假设   for   class   code   

原文地址:https://www.cnblogs.com/qiujichu/p/13055302.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!