LeetCode – 167. Two Sum II – Input array is sorted

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

A classic two-pointer setup, no further explanation needed.

public class Solution { public int[] twoSum(int[] numbers, int target) { int[] result = new int[2]; int h= 0; int l = numbers.length -1; while(h0 && l>h){ if(numbers[l]> target){ l--; break; } if(numbers[h] + numbers[l] == target){ result[0] =h+1; result[1] = l+1; return result; } if(numbers[h] + numbers[l] < target){ h++; } else{ l--; } } return result; } }

This siteOriginal articleAll follow "Attribution-NonCommercial-ShareAlike 4.0 License (CC BY-NC-SA 4.0)Please retain the following annotations when sharing or adapting:

Original author:Jake Tao,source:「LeetCode – 167. Two Sum II – Input array is sorted」

132
0 0 132

Further Reading

Post a reply

Log inYou can only comment after that.
Share this page
Back to top