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 |
%%
a = 0
b = 0
y_correct = [0 0];
assert(isequal(Fib_gen_solver(a,b),y_correct))
a = 0
b = 1
y_correct = [1 0];
assert(isequal(Fib_gen_solver(a,b),y_correct))
a = 1
b = 1
y_correct = [0 1];
assert(isequal(Fib_gen_solver(a,b),y_correct))
a = 5
b = 13
y_correct = [8 5];
assert(isequal(Fib_gen_solver(a,b),y_correct))
a =
0
b =
0
a =
0
b =
1
a =
1
b =
1
a =
5
b =
13
|
624 Solvers
6368 Solvers
Make a run-length companion vector
512 Solvers
347 Solvers
Sum the elements in either diagonal of a square matrix
178 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!