No description
Find a file
boolpurist 36ecf4affa Improved runtime by about 45 ms for leetcode submission
Adjusted start interval from all jumps steps to only jumps height
which exceed the greatest vested index.
This adjustment also removed one addition statement
2024-08-06 13:33:48 +02:00
src Improved runtime by about 45 ms for leetcode submission 2024-08-06 13:33:48 +02:00
.gitignore Solved game jump from leet code 2024-08-06 10:01:55 +02:00
Cargo.lock Solved game jump from leet code 2024-08-06 10:01:55 +02:00
Cargo.toml Solved game jump from leet code 2024-08-06 10:01:55 +02:00
LICENSE Added License 2024-08-06 10:29:36 +02:00
README.md Added documentation 2024-08-06 10:24:46 +02:00

Jump game as a coding challenge

This challenge was invented by google. This code base serves as a solution to this problem

The problem is described and can be tested on leetcode under the following link:

https://leetcode.com/problems/jump-game/description/

Tests

There is a number of unit tests with test cases. These test cases were derived from the given examples on leetcode and failed submissions of previously flawed solutions.

Status

This solution passes the submission