Jump Game
Medium
Arrays
Greedy
DP
Solve the Jump Game problem.
Input and output as shown in examples.
Constraints
See problem-specific constraints.
Examples
Example 1:
Input: 2 3 1 1 4
Output:
Example 2:
Input: 2 3 1 1 4
Output:
Hints
Think about the approach carefully.
Consider edge cases.
Tests:
Runtime:
Memory:
Test
Input:
Expected:
Got:
Click Run Code to test against sample cases, or Submit to test against all cases.
▲ Console