167. Two Sum II - Input Array Is SortedMedium
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 specifictarget
number. Let these two numbers benumbers[index
1
]
andnumbers[index
2
]
where1 <= index
1
< index
2
<= numbers.length
.Return the indices of the two numbers,
index
1
andindex
2
, added by one as an integer array[index
2
, index
2
]
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