why the function fibonacci is not working here?
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
n = 1;
f = 1;
assert(isequal(fib(n),f))
|
2 | Fail |
n = 6;
f = 8;
assert(isequal(fib(n),f))
|
3 | Fail |
n = 10;
f = 55;
assert(isequal(fib(n),f))
|
4 | Fail |
n = 20;
f = 6765;
assert(isequal(fib(n),f))
|
1962 Solvers
502 Solvers
Convert a Cell Array into an Array
430 Solvers
Deleting an element in a matrix
325 Solvers
464 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!