Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
f = 1;
assert(isequal(fib(n),f))
|
2 | Pass |
n = 6;
f = 8;
assert(isequal(fib(n),f))
x =
1 1 2
x =
1 1 2 3
x =
1 1 2 3 5
x =
1 1 2 3 5 8
|
3 | Pass |
n = 10;
f = 55;
assert(isequal(fib(n),f))
x =
1 1 2
x =
1 1 2 3
x =
1 1 2 3 5
x =
1 1 2 3 5 8
x =
1 1 2 3 5 8 13
x =
1 1 2 3 5 8 13 21
x =
1 1 2 3 5 8 13 21 34
x =
1 1 2 3 5 8 13 21 34 55
|
4 | Pass |
n = 20;
f = 6765;
assert(isequal(fib(n),f))
x =
1 1 2
x =
1 1 2 3
x =
1 1 2 3 5
x =
1 1 2 3 5 8
x =
1 1 2 3 5 8 13
x =
1 1 2 3 5 8 13 21
x =
1 1 2 3 5 8 13 21 34
x =
1 1 2 3 5 8 13 21 34 55
x =
1 1 2 3 5 8 13 21 34 55 89
x =
1 1 2 3 5 8 13 21 34 55 89 144
x =
1 1 2 3 5 8 13 21 34 55 89 144 233
x =
1 1 2 3 5 8 13 21 34 55 89 144 233 377
x =
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610
x =
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
x =
Columns 1 through 14
1 1 2 3 5 8 13 21 34 55 89 144 233 377
Columns 15 through 17
610 987 1597
x =
Columns 1 through 14
1 1 2 3 5 8 13 21 34 55 89 144 233 377
Columns 15 through 18
610 987 1597 2584
x =
Columns 1 through 14
1 1 2 3 5 8 13 21 34 55 89 144 233 377
Columns 15 through 19
610 987 1597 2584 4181
x =
Columns 1 through 14
1 1 2 3 5 8 13 21 34 55 89 144 233 377
Columns 15 through 20
610 987 1597 2584 4181 6765
|
244 Solvers
Replace multiples of 5 with NaN
282 Solvers
The sum of the numbers in the vector
341 Solvers
216 Solvers
315 Solvers