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

rs: add «1137. N-th Tribonacci Number»

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2024-04-24 10:11:36 +02:00
parent 14f67a9637
commit c45234e58f
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -0,0 +1,17 @@
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]
}
}