摘要: class Solution: def twoSum(self, nums, target: int): for i in range(len(nums)): if target - nums[i] in nums[i + 1:] : if i!=nums.index(target - nums[i 阅读全文
posted @ 2023-12-28 16:10 Junior_bond 阅读(5) 评论(0) 推荐(0)