Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 466 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 466 Bytes

119.Jump Game

Description

Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maximum jump length at that position. Determine if you are able to reach the last index.

Example1

Input: [2, 3, 1, 1, 4]
Output: true

Example2

Input: [3, 2, 1, 0, 4]
Output: false

From

LeetCode