Loading...
Given an array nums where each element represents the maximum jump length from that position, determine if you can reach the last index starting from index 0.
2,3,1,1,4
True
True, indicating that we can successfully jump to the last index from index 0.