leetCode 45 (jump game): 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.Your goal is to reach the last index in the minimum number of jumps.
e.g. [2, 3, 1, 1, 4] –> 2
solution: at current position, bfs all the next positions it can jump to, when the back element is in next position list, then reached.
|
|