问题

给定一个整数数组,返回两个数字的索引,使它们相加到特定目标。
您可以假设每个输入只有一个解决方案,并且您可能不会两次使用相同的元素。

1
2
3
Given nums = [2, 7, 11, 15], target = 9,
Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1]

答案

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
* @param {number[]} nums
* @param {number} target
* @return {number[]}
**/
const twoSum = (nums, target) => {
let hash = {};
let len = nums.length;
for (let i = 0; i < len; i++) {
if (nums[i] in hash) {
return [hash[nums[i]], i];
}
hash[target - nums[i]] = i
}
return [-1, -1];
};
// 可以使用控制台Console测试twoSum()