LeetCode力扣真题解惑第2篇 —— 力扣第1题:两数之和

LeetCode力扣真题解惑第2篇 —— 力扣第1题:两数之和

1. 两数之和。

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

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

示例:

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

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

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

# -*- coding: utf-8 -*-
"""
Created on Fri Dec 18 15:44:33 2020

@作者: 文方俊
@日期:2020年12月18日
@功能:两数之和。


"""
class Solution:
    def twoSum(self, nums: List[int], target: int) -> List[int]:
        while True:
            a2 = nums.pop() 
            indx_a2 = len(nums)
            for indx_a1 in range(len(nums)):
                a1 = nums[index_a1]
                if a1+a2 == target:
                    return [index_a1, index_a2]

你可能感兴趣的:(LeetCode力扣真题解惑,leetcode,算法,数据结构,python,编程语言)