Two Sum
题目链接 【英文版】 https://leetcode.com/problems/two-sum/ 【中文版】 https://leetcode-cn.com/problems/two-sum/ 题目 给定一个整数数组 \(nums\) 和一个目标值 \(target\) ,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 :type nums: List[int] :type target: int :rtype: List[int] 示例 给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] = 2 + 7 = 9 所以返回 [0, 1] 解法 暴力搜索 遍历 \(nums\) 中的每一个元素 \(x\) ,查找 \(nums\) 中另一个元素 \(j\) 使得 \(x+j=target\) ★ 时间复杂度: \(O(n^2)\) 对于每个元素,我们试图通过遍历数组的其余部分来寻找它所对应的目标元素,这将耗费 ★ 空间复杂度: \(O(1)\) Brute Force -python-1 ```python class Solution(object): def twoSum(self, nums, target)