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))
f =
1 1 2
f =
1 1 2 3
f =
1 1 2 3 5
f =
1 1 2 3 5 8
|
3 | Pass |
%%
n = 10;
f = 55;
assert(isequal(fib(n),f))
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
|
4 | Pass |
%%
n = 20;
f = 6765;
assert(isequal(fib(n),f))
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 =
Columns 1 through 10
1 1 2 3 5 8 13 21 34 55
Column 11
89
f =
Columns 1 through 10
1 1 2 3 5 8 13 21 34 55
Columns 11 through 12
89 144
f =
Columns 1 through 10
1 1 2 3 5 8 13 21 34 55
Columns 11 through 13
89 144 233
f =
Columns 1 through 10
1 1 2 3 5 8 13 21 34 55
Columns 11 through 14
89 144 233 377
f =
Columns 1 through 10
1 1 2 3 5 8 13 21 34 55
Columns 11 through 15
89 144 233 377 610
f =
Columns 1 through 10
1 1 2 3 5 8 13 21 34 55
Columns 11 through 16
89 144 233 377 610 987
f =
Columns 1 through 5
1 1 2 3 5
Columns 6 through 10
8 13 21 34 55
Columns 11 through 15
89 144 233 377 610
Columns 16 through 17
987 1597
f =
Columns 1 through 5
1 1 2 3 5
Columns 6 through 10
8 13 21 34 55
Columns 11 through 15
89 144 233 377 610
Columns 16 through 18
987 1597 2584
f =
Columns 1 through 5
1 1 2 3 5
Columns 6 through 10
8 13 21 34 55
Columns 11 through 15
89 144 233 377 610
Columns 16 through 19
987 1597 2584 4181
f =
Columns 1 through 5
1 1 2 3 5
Columns 6 through 10
8 13 21 34 55
Columns 11 through 15
89 144 233 377 610
Columns 16 through 20
987 1597 2584 4181 6765
|
831 Solvers
Duplicate each element of a vector.
518 Solvers
Side of an equilateral triangle
2598 Solvers
555 Solvers
2238 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!