欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【力扣1】两数之和 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。

程序员文章站 2022-03-08 09:42:27
...

解题思路
1.遍历数组
2.用target找到数组中每个值和他对应的数字
3.截取数组之后的值,看有没有他对应的数字有则返回两数的下标,没有
则返回undefined

var twoSum = function(nums, target) {
  for (let i in nums) {
    let num = target - nums[i];
    let index = i * 1;
    let tag = nums.slice(index + 1).indexOf(num);
    if (tag > -1) {
      return [index, tag * 1 + index + 1];
    }
  }
};
twoSum([2,7,11,15],9)  //[0,1]

推荐阅读