-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathJumpGame.go
More file actions
45 lines (37 loc) · 741 Bytes
/
JumpGame.go
File metadata and controls
45 lines (37 loc) · 741 Bytes
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
44
45
package JumpGame
//
//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.
//
//Accepted.
func canJump(nums []int) bool {
if nums == nil || len(nums) == 0 {
return false
}
if len(nums) == 1 {
return true
}
maxLength := 0
for i := 0; i < len(nums)-1; i++ {
maxLength--
maxLength = max(maxLength, nums[i])
if maxLength == 0 {
return false
}
}
return maxLength > 0
}
func max(a int, b int) int {
if a > b {
return a
}
return b
}