Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
x = 1;
y_correct = 1;
assert(isequal(nCardsProblem(x),y_correct))
Error: Undefined function or variable "m".
|
2 | Fail |
%%
x = 5;
y_correct = 2;
assert(isequal(nCardsProblem(x),y_correct))
Error: Index of element to remove exceeds matrix dimensions.
|
3 | Fail |
%%
x = 50;
y_correct = 36;
assert(isequal(nCardsProblem(x),y_correct))
Error: Index of element to remove exceeds matrix dimensions.
|
4 | Fail |
%%
x = 1000;
y_correct = 976;
assert(isequal(nCardsProblem(x),y_correct))
Error: Index of element to remove exceeds matrix dimensions.
|
5 | Fail |
%%
x = 10000;
y_correct = 3616;
assert(isequal(nCardsProblem(x),y_correct))
Error: Index of element to remove exceeds matrix dimensions.
|
605 Solvers
579 Solvers
316 Solvers
411 Solvers
359 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!