love it
This is so mathematical!
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))
|
1421 Solvers
115 Solvers
Back to basics 21 - Matrix replicating
1052 Solvers
Remove from a 2-D matrix all the rows that contain at least one element less than or equal to 4
140 Solvers
Is this triangle right-angled?
2874 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!