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 |
n = 3;
y_correct = 252;
assert(isequal(xoxo(n),y_correct));
ans =
252
|
2 | Pass |
% sneaky... With n=1 this is a single player game though the outcome is 2 as you can still choose 'x' or 'o' to play.
n = 1;
y_correct = 2;
assert(isequal(xoxo(n),y_correct));
ans =
2
|
3076 Solvers
171 Solvers
272 Solvers
257 Solvers
569 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!