酷炫酸奶

文章
3
资源
0
加入时间
3年1月16天

两数之和--python ->的意思

class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]:#List = [] n = len(nums) for x in range(n): for y in range(x+1,n): if nums[y] == target - nums[x]: