Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
b = [0 1 1 0 2;
0 1 2 2 1;
1 0 2 2 2;
1 1 2 2 1;
1 1 2 1 0];
result_correct = 2;
assert(isequal(c4winner(b),result_correct))
[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 c4winner (line 2)
In ScoringEngineTestPoint1 (line 7)
In solutionTest (line 3)]
|
2 | Pass |
b = [0 0 0 0;
1 0 2 0;
1 1 1 1;
0 0 2 2];
result_correct = 1;
assert(isequal(c4winner(b),result_correct))
[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 c4winner (line 2)
In ScoringEngineTestPoint2 (line 6)
In solutionTest (line 5)]
|
3 | Pass |
b = [0 0 0 0 0 1;
2 2 0 0 2 2;
0 0 0 0 0 1;
2 0 0 1 1 0;
0 0 0 1 0 0;
0 0 1 0 2 2];
result_correct = 1;
assert(isequal(c4winner(b),result_correct))
[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 c4winner (line 2)
In ScoringEngineTestPoint3 (line 8)
In solutionTest (line 7)]
|
4 | Pass |
b = [0 0 0 0;
1 0 0 0;
0 0 0 0;
0 0 0 2];
result_correct = 0;
assert(isequal(c4winner(b),result_correct))
[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 c4winner (line 2)
In ScoringEngineTestPoint4 (line 6)
In solutionTest (line 9)]
|
5 | Pass |
b = [0 0 0 0;
1 1 1 1;
0 0 0 0;
0 0 0 2];
result_correct = 1;
assert(isequal(c4winner(b),result_correct))
[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 c4winner (line 2)
In ScoringEngineTestPoint5 (line 6)
In solutionTest (line 11)]
|
6 | Pass |
b = [0 0 2 2;
1 0 2 0;
1 2 2 1;
2 0 1 2];
result_correct = 2;
assert(isequal(c4winner(b),result_correct))
[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 c4winner (line 2)
In ScoringEngineTestPoint6 (line 6)
In solutionTest (line 13)]
|
7 | Pass |
b = [0 0 0 0;
1 0 1 1;
0 0 2 0;
0 2 0 2];
result_correct = 0;
assert(isequal(c4winner(b),result_correct))
[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 c4winner (line 2)
In ScoringEngineTestPoint7 (line 6)
In solutionTest (line 15)]
|
1137 Solvers
Renaming a field in a structure array
541 Solvers
Check to see if a Sudoku Puzzle is Solved
232 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1063 Solvers
167 Solvers