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))
|
The Goldbach Conjecture, Part 2
961 Solvers
415 Solvers
613 Solvers
Similar Triangles - find the height of the tree
156 Solvers
Return the first and last character of a string
1662 Solvers