Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
n = 1;
f_correct = 1;
assert(isequal(fib_decomposition(n),f_correct))
|
2 | Fail |
n = 4;
f_correct = [1 3];
assert(isequal(fib_decomposition(n),f_correct))
|
3 | Fail |
n = 6;
f_correct = [1 5];
assert(isequal(fib_decomposition(n),f_correct))
|
4 | Fail |
n = 2010;
f_correct = [2 34 377 1597];
assert(isequal(fib_decomposition(n),f_correct))
|
5 | Fail |
n = 35601;
f_correct = [1 34 144 6765 28657];
assert(isequal(fib_decomposition(n),f_correct))
|
6 | Fail |
n = 9227467;
f_correct = [2 9227465];
assert(isequal(fib_decomposition(n),f_correct))
|
7 | Fail |
n = 2015;
f_correct = [2 5 34 377 1597];
assert(isequal(fib_decomposition(n),f_correct))
|
6718 Solvers
Sort a list of complex numbers based on far they are from the origin.
4326 Solvers
573 Solvers
2313 Solvers
176 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!