-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjump_game.rs
51 lines (42 loc) · 1.14 KB
/
jump_game.rs
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
46
47
48
49
50
51
/// You are given an integer array `nums`. You are initially positioned at the
/// array's first index, and each element in the array represents your maximum
/// jump length at that position.
///
/// Return `true` if you can reach the last index, or `false` otherwise.
struct Solution;
impl Solution {
pub fn can_jump(nums: Vec<i32>) -> bool {
let mut result = false;
let mut max_so_far = 0;
let n = nums.len();
for i in 0..n {
if i > max_so_far {
result = false;
break;
}
let max_from_here = i + nums[i] as usize;
max_so_far = max_so_far.max(max_from_here);
if max_so_far >= n-1 {
result = true;
break;
}
}
result
}
}
#[cfg(test)]
mod tests {
use super::Solution;
#[test]
fn example_1() {
let nums = vec![2,3,1,1,4];
let result = Solution::can_jump(nums);
assert!(result);
}
#[test]
fn example_2() {
let nums = vec![3,2,1,0,4];
let result = Solution::can_jump(nums);
assert!(!result);
}
}