LeetCode: https://leetcode.com/problems/jump-game/
You are given an integer array nums where nums[i] is your maximum jump length from index i.
Return true if you can reach the last index.
i
2
0
3
1
1
2
1
3
4
4
farthest=2
Step 1 / 3
Step 1:
Track farthest reachable index while scanning.
Pointers: i=0
Focus: select @ [0]
farthest=2