Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [3 4 5];
y_correct = [1 2];
assert(isequal(game_nim(x),y_correct))
|
2 | Pass |
%%
x = [0 7 9];
y_correct = [3 2];
assert(isequal(game_nim(x),y_correct))
|
3 | Pass |
%%
x = [7 7 7 ];
y_correct = [1 7];
assert(isequal(game_nim(x),y_correct))
|
4 | Pass |
%%
x = [112 98 99];
y_correct = [1 111];
assert(isequal(game_nim(x),y_correct))
|
695 Solvers
Determine if input is a perfect number
145 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
206 Solvers
363 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!