Two Sum II - Input Array Is Sorted
You are 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 specific target number. Let these two numbers be numbers[index1] and numbers[index2] where 1 <= index1 < index2 <= numbers.length.
Return the indices of the two numbers, index1 and index2, as a ...
Posted on Tue, 25 Aug 2026 16:09:18 +0000 by scoman