Given a -indexed sorted array and a target, find two numbers that add up to the target. Return their indices as [index1, index2].
You may not use the same element twice. There is exactly one solution.
Example: For [2,7,11,15] and target , return [1,2] because .