Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
f_correct = 1;
assert(isequal(fib_decomposition(n),f_correct))
b =
1
f =
1
|
2 | Pass |
n = 4;
f_correct = [1 3];
assert(isequal(fib_decomposition(n),f_correct))
b =
1 2 3
f =
1 3
|
3 | Pass |
n = 6;
f_correct = [1 5];
assert(isequal(fib_decomposition(n),f_correct))
b =
1 2 3 5
f =
1 5
|
4 | Pass |
n = 2010;
f_correct = [2 34 377 1597];
assert(isequal(fib_decomposition(n),f_correct))
b =
Columns 1 through 15
1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
Column 16
1597
f =
2 34 377 1597
|
5 | Pass |
n = 35601;
f_correct = [1 34 144 6765 28657];
assert(isequal(fib_decomposition(n),f_correct))
b =
Columns 1 through 15
1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
Columns 16 through 22
1597 2584 4181 6765 10946 17711 28657
f =
1 34 144 6765 28657
|
6 | Pass |
n = 9227467;
f_correct = [2 9227465];
assert(isequal(fib_decomposition(n),f_correct))
b =
Columns 1 through 15
1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
Columns 16 through 30
1597 2584 4181 6765 10946 17711 28657 46368 75025 121393 196418 317811 514229 832040 1346269
Columns 31 through 34
2178309 3524578 5702887 9227465
f =
2 9227465
|
7 | Pass |
n = 2015;
f_correct = [2 5 34 377 1597];
assert(isequal(fib_decomposition(n),f_correct))
b =
Columns 1 through 15
1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
Column 16
1597
f =
2 5 34 377 1597
|
First non-zero element in each column
464 Solvers
401 Solvers
271 Solvers
99 Solvers
726 Solvers