Given an array of non-negative integers [2,3,1,4,2,3], you are initially positioned at the first index of the array. Each element in the array represents your maximum jump length at that position. What is minimum number of jumps to the last index of the array.
a. |
7 |
|
b. |
2 |
|
c. |
6 |
|
d. |
5 |
In last index array value is 3 That means maximum jumps of 3 is 3 By checking other options except b.2 more than 3 M ... See the full answer