This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 7;
y_correct = [2,3];
assert(isequal(nim(x),y_correct))
ans =
2 3
|
2 | Pass |
x = 11;
y_correct = [2,5];
assert(isequal(nim(x),y_correct))
ans =
2 5
|
3 | Pass |
x = 3;
y_correct = [2,1];
assert(isequal(nim(x),y_correct))
ans =
2 1
|
3418 Solvers
244 Solvers
394 Solvers
299 Solvers
328 Solvers