给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。
例子
给定 nums = [2, 7, 11, 15], target = 9 返回 [0, 1]
// 思路:通过差值来寻找(拓展:如果存在多组数值相加,符合条件的)
var twoSum = function(nums, target){let res = []let temp = []for (let i = 0; i < nums.length; i++) {let dif = target - nums[i]if (temp[dif]!==undefined) {res.push(temp[dif], i)}temp[nums[i]] = i}return res}// 使用es6的map写法var twoSum = function(nums, target) {const map = new Map()for (let i = 0; i < nums.length; i ++) {const otherIndex = map.get(target - nums[i])if (otherIndex !== undefined) {return [otherIndex, i]}map.set(nums[i], i)}}
