Medium
Given an array nums where each element is your maximum jump length from that position, return true if you can reach the last index.
nums
true
Input: nums = [2,3,1,1,4] Output: true
Input: nums = [3,2,1,0,4] Output: false