Mental Model
Find the smallest total by moving only right or down from the top-left to the bottom-right of a grid.
Analogy: Imagine walking through a city grid where each block has a cost to cross. You want to find the cheapest path from your home (top-left) to your friend's house (bottom-right) by only moving east or south.
Start: [0,0] -> [0,1] -> [0,2] ↓ ↓ ↓ [1,0] -> [1,1] -> [1,2] ↓ ↓ ↓ [2,0] -> [2,1] -> [2,2] You can only move -> or ↓ from each cell.