LeetCode MEDIUM 45 Jump Game II Summary
Generated by Codex with GPT-5
Quick facts
- Difficulty:
MEDIUM - Problem: Jump Game II
- Main tags:
Array,Dynamic Programming,Greedy
What the problem is really asking
Each position tells how far forward it can jump. The goal is not to maximize distance on each move. The goal is to reach the last index using as few jumps as possible.
Continue ...