Two Sum II - Input Array Is Sorted
Problem statement
Find two numbers in a sorted non-decreasing order 1-indexed array that adds up to the target. Return their indices (1-indexed) as [index1, index2] in an integer array of length 2. The solution should use constant extra space.
Constr...
struglingblogs.hashnode.dev2 min read