1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| package com.orchids.leetcode.day02;
import java.awt.event.MouseAdapter;
public class code4 {
public int jump(int[] nums) { int end = 0; int maxPosition = 0; int steps = 0;
for (int i = 0; i < nums.length - 1; i++) { maxPosition = Math.max(maxPosition, nums[i] + i);
if (i == end) { end = maxPosition; steps++; } } return steps; } }
|