167. Two Sum II - Input Array Is SortedMedium
Given a 1-indexed array of integers
numbersthat is already sorted in non-decreasing order, find two numbers such that they add up to a specifictargetnumber. Let these two numbers benumbers[index1]andnumbers[index2]where1 <= index1< index2<= numbers.length.Return the indices of the two numbers,
index1andindex2, added by one as an integer array[index2, index2]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.
- Problem
- Solutions