This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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))
|
3 | Pass |
n = 10;
f = 55;
assert(isequal(fib(n),f))
|
4 | Pass |
n = 20;
f = 6765;
assert(isequal(fib(n),f))
|
14354 Solvers
525 Solvers
328 Solvers
The Answer to Life, the Universe, and Everything
312 Solvers
07 - Common functions and indexing 6
282 Solvers