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))
|
Find the sum of all the numbers of the input vector
25691 Solvers
14356 Solvers
Find the sum of the elements in the "second" diagonal
880 Solvers
230 Solvers
Create matrix of replicated elements
266 Solvers