Intervue featured on Shark TankIntervue featured on Shark Tank - mobile banner

Given a 1-indexed array of integers numbers that is already sorted in non-decreasing order, find two numbers such that they add up to a specific target number. Let these two numbers be numbers[index1] and numbers[index2] where 1 <= index1 < index2 <= numbers.length. Return the indices of the two numbers, index1 and index2, added by 1 as an integer array of length 2. The tests are generated such that there is exactly one solution. You may not use the same element twice. Your solution must use only constant extra space.

Constraints:

  • 2 <= numbers.length <= 1000
  • -1000 <= numbers[i] <= 1000
  • numbers is sorted in non-decreasing order.
  • -1000 <= target <= 1000
  • The tests are generated such that there is exactly one solution.

Examples:

Input: [2,7,11,15] and target = 9

Output: [1,2]

Explanation: Because numbers[0] + numbers[1] == 2 + 7 == 9, we return [1, 2].

Solutions

Two Pointers

Time: O(n)Space: O(1)

We use two pointers, one at the start and one at the end of the array. We calculate the sum of the numbers at these two pointers. If the sum is equal to the target, we return the indices of these two numbers. If the sum is less than the target, we move the left pointer to the right. If the sum is greater than the target, we move the right pointer to the left.

var twoSum = function (numbers, target) {
  let left = 0,
    right = numbers.length - 1;
  while (left < right) {
    let sum = numbers[left] + numbers[right];
    if (sum === target) return [left + 1, right + 1];
    sum < target ? left++ : right--;
  }
};

Difficulty: Medium

Category: Array, Two Pointers

Frequency: High

Company tags:

GoogleAmazonMicrosoft