给出一个整数数组,返回两个加起来等于目标的数字的下标。 假定每个输入只有一个解决方法,每个元素只用一次。 例如: 输入 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] = 2 + 7 = 9, 所以 return [0, 1] python 版本: def twoSum(nums, target): """ :type nums: List[int] :type target: int :rtype: List[int...