This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [ 1 0 0
0 -1 0
-1 0 1];
b = [0];
out = ticTacToe(a);
assert(isequal(out(:), b(:)))
|
2 | Pass |
a = [ 1 0 0
0 1 -1
1 -1 -1];
b = [2 7];
out = ticTacToe(a);
assert(isequal(out(:), b(:)))
|
3 | Pass |
a = [ 1 0 0
-1 1 -1
1 -1 0];
b = [7 9];
out = ticTacToe(a);
assert(isequal(out(:), b(:)))
|
Given two strings, find the maximum overlap
461 Solvers
1263 Solvers
Omit columns averages from a matrix
527 Solvers
Project Euler: Problem 9, Pythagorean numbers
282 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!