DEV Community

ZeeshanAli-0704
ZeeshanAli-0704

Posted on • Updated on

Two Sum - I

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:

Input: nums = [2,7,11,15], target = 9
Output: [0,1]
Explanation: Because nums[0] + nums[1] == 9, we return [0, 1].

var twoSum = function (nums, target) {
  let index = [];
  let map1 = new Map();
  for (let i = 0; i < nums.length; i++) {
    map1.set(nums[i], i);
  }

  for (let i = 0; i <= nums.length; i++) {
    let compliment = target - nums[i];
    if (map1.has(compliment) && map1.get(compliment) !== i) {
      return [i, map1.get(compliment)];
    }
  }

  return index;
};

console.log(twoSum([2, 7, 11, 15], 9));

Enter fullscreen mode Exit fullscreen mode

Top comments (0)