1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/rs/n-th-tribonacci-number.rs

18 lines
318 B
Rust
Raw Normal View History

impl Solution {
pub fn tribonacci(mut n: i32) -> i32 {
let mut seq = vec![0, 1, 1];
while n >= 3 {
let next = seq.iter().sum::<i32>();
seq[0] = seq[1];
seq[1] = seq[2];
seq[2] = next;
n -= 1;
}
seq[n as usize]
}
}