forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_55.java
28 lines (26 loc) · 1007 Bytes
/
_55.java
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
package com.fishercoder.solutions;
/**
* 55. 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.
* Determine if you are able to reach the last index.
*
* For example:
* A = [2,3,1,1,4], return true.
* A = [3,2,1,0,4], return false.*/
public class _55 {
public static class Solution1 {
public boolean canJump(int[] nums) {
int farthest = nums[0];
for (int i = 0; i < nums.length; i++) {
if (i <= farthest && nums[i] + i > farthest) {
//i <= farthest is to make sure that this current i is within the current range
// nums[i]+i > farthest is to make sure that it's necessary to update farthest with current nums[i]+i
farthest = nums[i] + i;
}
}
return farthest >= nums.length - 1;
}
}
}