Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
f = 1;
assert(isequal(fib(n),f))
f =
1
f =
1 1
f =
1
|
2 | Pass |
n = 6;
f = 8;
assert(isequal(fib(n),f))
f =
1
f =
1 1
f =
1 1 2
f =
1 1 2 3
f =
1 1 2 3 5
f =
1 1 2 3 5 8
f =
8
|
3 | Pass |
n = 10;
f = 55;
assert(isequal(fib(n),f))
f =
1
f =
1 1
f =
1 1 2
f =
1 1 2 3
f =
1 1 2 3 5
f =
1 1 2 3 5 8
f =
1 1 2 3 5 8 13
f =
1 1 2 3 5 8 13 21
f =
1 1 2 3 5 8 13 21 34
f =
1 1 2 3 5 8 13 21 34 55
f =
55
|
4 | Pass |
n = 20;
f = 6765;
assert(isequal(fib(n),f))
f =
1
f =
1 1
f =
1 1 2
f =
1 1 2 3
f =
1 1 2 3 5
f =
1 1 2 3 5 8
f =
1 1 2 3 5 8 13
f =
1 1 2 3 5 8 13 21
f =
1 1 2 3 5 8 13 21 34
f =
1 1 2 3 5 8 13 21 34 55
f =
1 1 2 3 5 8 13 21 34 55 89
f =
1 1 2 3 5 8 13 21 34 55 89 144
f =
1 1 2 3 5 8 13 21 34 55 89 144 233
f =
1 1 2 3 5 8 13 21 34 55 89 144 233 377
f =
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610
f =
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
f =
Columns 1 through 15
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610
Columns 16 through 17
987 1597
f =
Columns 1 through 15
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610
Columns 16 through 18
987 1597 2584
f =
Columns 1 through 15
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610
Columns 16 through 19
987 1597 2584 4181
f =
Columns 1 through 15
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610
Columns 16 through 20
987 1597 2584 4181 6765
f =
6765
|
250 Solvers
5112 Solvers
2143 Solvers
414 Solvers
443 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!