Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 7;
y_correct = [2,3];
assert(isequal(nim(x),y_correct))
y =
2 3
ans =
[]
|
2 | Pass |
%%
x = 11;
y_correct = [2,5];
assert(isequal(nim(x),y_correct))
y =
2 5
ans =
[]
|
3 | Pass |
%%
x = 3;
y_correct = [2,1];
assert(isequal(nim(x),y_correct))
y =
2 1
ans =
[]
|
Remove the small words from a list of words.
474 Solvers
244 Solvers
Back to basics 20 - singleton dimensions
225 Solvers
Sum the 'edge' values of a matrix
153 Solvers
395 Solvers