LeetCode算法笔记–Day43
55. 跳跃游戏
题目:
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.
example
input: nums = [2,3,1,1,4]
output: trueinput: nums = [3,2,1,0,4]
output: false
Analyze:
方法一:贪心算法
My Answer:
1 | /** |