Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [ 1 0 1
0 -1 0
-1 -1 1];
b = [4 8];
out = ticTacToe(a);
assert(isequal(out(:), b(:)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In ticTacToe (line 2)
In ScoringEngineTestPoint1 (line 6)
In solutionTest (line 3)]
|
2 | Pass |
a = [ 1 0 0
0 -1 0
-1 0 1];
b = [0];
out = ticTacToe(a);
assert(isequal(out(:), b(:)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In ticTacToe (line 2)
In ScoringEngineTestPoint2 (line 6)
In solutionTest (line 5)]
|
3 | Pass |
a = [ 1 0 0
0 1 -1
1 -1 -1];
b = [2 7];
out = ticTacToe(a);
assert(isequal(out(:), b(:)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In ticTacToe (line 2)
In ScoringEngineTestPoint3 (line 6)
In solutionTest (line 7)]
|
4 | Pass |
a = [ 1 0 0
-1 1 -1
1 -1 0];
b = [7 9];
out = ticTacToe(a);
assert(isequal(out(:), b(:)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In ticTacToe (line 2)
In ScoringEngineTestPoint4 (line 6)
In solutionTest (line 9)]
|
Find the numeric mean of the prime numbers in a matrix.
6781 Solvers
Return the 3n+1 sequence for n
6167 Solvers
Test if a Number is a Palindrome without using any String Operations
181 Solvers
267 Solvers
Output any real number that is neither positive nor negative
316 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!