LeetCode MEDIUM 55 Jump Game Summary
Generated by Codex with GPT-5
Quick facts
- Difficulty:
MEDIUM - Problem: Jump Game
- Main tags:
Array,Dynamic Programming,Greedy
What the problem is really asking
Each position tells how far the player is allowed to jump from that spot.
The goal is not to find the minimum number of jumps. It is only to decide whether the last index is reachable at all.
Continue ...