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))
|
Create a function handle that reverses the input arguments of another function handle
124 Solvers
1882 Solvers
Flip the main diagonal of a matrix
506 Solvers
163 Solvers
Permute diagonal and antidiagonal
224 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!