You are given an integer array nums where each element represents your maximum jump length from that position. Return true if you can reach the last index.
nums = [2,3,1,1,4]
true
nums = [3,2,1,0,4]
false