i wrote a code just like i would in c++. The code is huge by size but the answers are right however cody seems to disagree.
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
n = 1;
f = 1;
assert(isequal(fib(n),f))
ans =
1
|
2 | Fail |
n = 6;
f = 8;
assert(isequal(fib(n),f))
ans =
8
|
3 | Fail |
n = 10;
f = 55;
assert(isequal(fib(n),f))
ans =
55
|
4 | Fail |
n = 20;
f = 6765;
assert(isequal(fib(n),f))
ans =
6765
|
6365 Solvers
1425 Solvers
Celsius to Fahrenheit converter
389 Solvers
516 Solvers
5464 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!