Two Sum

Given a sorted array numbers and a target value target. Return the 1-based indices of two elements whose sum equals target. Indexing is 1-based.
Example 1
Input: numbers = [1, 2, 3, 4], target = 3
Output: [1, 2]
Explanation: 1 + 2 = 3
Example 2
Input: numbers = [2, 7, 11, 15], target = 9
Output: [1, 2]
Explanation: 2 + 7 = 9
Line 1, Char 1