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 |
x = 1;
y_correct = 1;
assert(isequal(nCardsProblem(x),y_correct))
|
2 | Pass |
x = 5;
y_correct = 2;
assert(isequal(nCardsProblem(x),y_correct))
|
3 | Pass |
x = 50;
y_correct = 36;
assert(isequal(nCardsProblem(x),y_correct))
|
4 | Pass |
x = 1000;
y_correct = 976;
assert(isequal(nCardsProblem(x),y_correct))
|
5 | Pass |
x = 10000;
y_correct = 3616;
assert(isequal(nCardsProblem(x),y_correct))
|
1939 Solvers
651 Solvers
616 Solvers
1645 Solvers
Back to basics 3 - Temp Directory
277 Solvers