Problems / Two Pointers / Two Sum II - Input Array Is Sorted
#11 Medium Time O(n) Space O(1) Animated

Two Sum II - Input Array Is Sorted

Find two numbers in a sorted array that add up to target.

LeetCode ↗
Tutor Mode Build the mental model before you memorize the code.
  1. 1 Predict
  2. 2 Trace
  3. 3 Explain
  4. 4 Implement
Pattern Two pointers shrink the search space

Use ordering or symmetry to decide which boundary can move without discarding a valid answer.

Approach: Two Pointers — Sorted Input
Click play to start
Step 0 / 0
Press play to start the visualization.

Steps