Your question is Two Sum in Sorted Array. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Given a sorted array of integers numbers and an integer target, return the 0-based indices of the two elements whose sum is exactly target. Exactly one valid pair exists, and you may not use the same element twice. Solve it using a two-pointer approach.
def two_sum_sorted(numbers, target):