LeetCode #55: Jump Game
You're given an array where each element is the maximum jump length from that position. Determine if you can reach the last index starting from index .
Example: nums returns true.
Example: nums returns false (stuck at index ).
Constraints: up to .
Try solving it before reading the hints.