Two Sum II - Input array is sorted
Input: numbers = [2,7,11,15], target = 9
Output: [1,2]
Explanation: The sum of 2 and 7 is 9. Therefore index1 = 1, index2 = 2.Solution
class Solution {
public int[] twoSum(int[] numbers, int target) {
// use binary search
int index1 = 0;
int index2 = 0;
for (int i = 0; i < numbers.length; i++) {
int val = numbers[i];
int found = Arrays.binarySearch(numbers, i + 1, numbers.length, target - val);
if (found >= 0) {
index1 = i + 1;
index2 = found + 1;
break;
}
}
return new int[]{ index1, index2 };
}
}Solution using Two Pointers
Last updated