-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanJump.py
31 lines (25 loc) · 996 Bytes
/
canJump.py
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
class Solution(object):
def canJump(self, nums):
"""
:type nums: List[int]
:rtype: bool
"""
farest = 0
for i in range(len(nums)):
if farest >= len(nums) - 1:
return True
if farest < i:
return False
farest = max(farest, i + nums[i])
return True
if __name__ == '__main__':
assert Solution().canJump([]) is True # True
assert Solution().canJump([0]) is True # True
assert Solution().canJump([5]) is True # True
assert Solution().canJump([2, 0]) is True # True
assert Solution().canJump([8, 5]) is True # True
assert Solution().canJump([2, 5, 0, 0]) is True # True
assert Solution().canJump([2, 3, 1, 1, 4]) is True # True
assert Solution().canJump([3, 2, 1, 0, 4]) is False # False
assert Solution().canJump([6, 0, 0, 0, 0, 0, 1]) is True # True
assert Solution().canJump([6, 0, 0, 0, 0, 0, 0, 1]) is False # False