167. Two Sum II - Input array is sorted

Description

Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number.

The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.

You may assume that each input would have exactly one solution and you may not use the same element twice.

Input: numbers={2, 7, 11, 15}, target=9 Output: index1=1, index2=2

Solution

Solution 1

/**
 * Solved with binary search algorithm
 * @param {number[]} numbers
 * @param {number} target
 * @return {number[]}
 */
var twoSum = function(numbers, target) {
    "use strict";
    function binarySearch(min, max, ary, goal) {
        while (min <= max) {
            let mid = Math.floor((min+max)/2);
            if (ary[mid] === goal) {
                return mid+1;
            }
            ary[mid] < goal ? min = mid+1 : max = mid-1;
        }
    }
    for (let i = 0; i < numbers.length; i++) {
        let goal = target - numbers[i];
        let result = binarySearch(i+1, numbers.length-1, numbers, goal);
        if (result) {
            return [i+1, result];
        }
    }
};

Solution 2

/**
 * Solved with hash table
 * @param {number[]} numbers
 * @param {number} target
 * @return {number[]}
 */
var twoSum = function(numbers, target) {
    "use strict";
    let table = {};
    for (let i = 0; i < numbers.length; i++) {
        let idx = target-numbers[i];
        if (table[idx] !== undefined) {
            return [table[idx]+1, i+1];
        }
        table[numbers[i]] = i;
    }
};

results matching ""

    No results matching ""