两数之和--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]: