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 | Fail |
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
y =
0 0
y =
1 0
y =
0 1
y =
8 5
|
Remove the polynomials that have positive real elements of their roots.
448 Solvers
96 Solvers
Find the sum of the elements in the "second" diagonal
880 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
263 Solvers
Getting the indices from a matrice
269 Solvers