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)]
解题思路:
遍历数组里的每一个数字
用和-加数求出另一个加数
再判断求出的数字是否位于数组中
并且这个数字的索引和被遍历的数字的索引不能一样
最后返回两个数的索引

Leetcode 1.两数之和 Python最先出现在Python成神之路

版权声明:
作者:ht
链接:https://www.techfm.club/p/7848.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>