Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
deck = 1:28;
n = 10;
out = [3 22 9 4 23 7 25 16 14 14];
assert(isequal(solitaire(deck, n),out))
|
2 | Pass |
deck = 1:28;
n = 9;
out = [3 22 9 4 23 7 25 16 14];
assert(isequal(solitaire(deck, n),out))
|
1939 Solvers
1047 Solvers
Omit columns averages from a matrix
482 Solvers
Back to basics 2 - Function Path
139 Solvers
Create matrix of replicated elements
266 Solvers