Ad
iCalmFailed Tests

Tribonacci

1, 1, 2, 3, 5...
Fibonachi starts at one and the next number is the two before it added. BUT this is Tribonacci and you have to add the three before it! You will get a number to start on and you shuld output a vecter containing the next ten numbers.

fn tribonacci (startn: i32) -> Vec<i32> {
    //You're solution!
}