Leetcode 1.两数之和 Python
class Solution:
def twoSum(self, nums, target):
for i,n in enumerate(nums):
if target-n in nums and nums.index(target-n)!=i:
return [i,nums.index(target-n)]
解题思路:
遍历数组里的每一个数字
用和-加数求出另一个加数
再判断求出的数字是否位于数组中
并且这个数字的索引和被遍历的数字的索引不能一样
最后返回两个数的索引
共有 0 条评论