mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
16 lines
277 B
Rust
16 lines
277 B
Rust
|
impl Solution {
|
||
|
pub fn climb_stairs(n: i32) -> i32 {
|
||
|
if n < 3 {
|
||
|
return n;
|
||
|
}
|
||
|
|
||
|
let mut ways = vec![0, 1, 2];
|
||
|
for k in 3..=n {
|
||
|
ways.remove(0);
|
||
|
ways.push(ways[0] + ways[1]);
|
||
|
}
|
||
|
|
||
|
ways[2]
|
||
|
}
|
||
|
}
|