def twoSum(self, nums: List[int], target: int) -> List[int]: 解决 : from typing import List
def twoSum(self, nums: List[int], target: int) -> List[int]: