问题描述
Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
You can return the answer in any order.
Example :
1 2 3
| Input: nums = [2,7,11,15], target = 9 Output: [0,1] Output: Because nums[0] + nums[1] == 9, we return [0, 1].
|
Constraints:
2 <= nums.length <= 104
-109 <= nums[i] <= 109
-109 <= target <= 109
- Only one valid answer exists.
解答
方法一
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
const twoSum = function (nums, target) { let map = new Map() for (let i = 0; i < nums.length; i++) { if (map.has(target - nums[i])) { return [map.get(target - nums[i]), i] } else { map.set(nums[i], i) } } return [] }
|
方法二
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
const twoSum = function (nums, target) { let hashTable = {} for (let i = 0; i < nums.length; i++) { if (hashTable[target - nums[i]] !== undefined) { return [hashTable[target - nums[i]], i] } else { hashTable[nums[i]] = i } } return [] }
|