Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
list = [1 2; 5 4; 2 4];
order = [1 3 2];
y_correct = 1;
assert(isequal(scoreOrderedDominoes(list, order),y_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 scoreOrderedDominoes (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
|
2 | Pass |
list = [1 2; 5 4; 2 4];
order = [2 1 3];
y_correct = 3;
assert(isequal(scoreOrderedDominoes(list, order),y_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 scoreOrderedDominoes (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
|
3 | Pass |
list = [1 2; 5 4; 2 4; 1 6; 7 5; 4 5; 4 8];
order = [2 1 3 7 4 6 5];
y_correct = 14;
assert(isequal(scoreOrderedDominoes(list, order),y_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 scoreOrderedDominoes (line 2)
In ScoringEngineTestPoint3 (line 4)
In solutionTest (line 7)]
|
4 | Pass |
list = [1 2; 6 6; 2 4];
order = [2 1 3];
y_correct = 5;
assert(isequal(scoreOrderedDominoes(list, order),y_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 scoreOrderedDominoes (line 2)
In ScoringEngineTestPoint4 (line 4)
In solutionTest (line 9)]
|
5 | Pass |
list = [1 2; 5 4; 2 4];
order = [1 2 3];
y_correct = 5;
assert(isequal(scoreOrderedDominoes(list, order),y_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 scoreOrderedDominoes (line 2)
In ScoringEngineTestPoint5 (line 4)
In solutionTest (line 11)]
|
What is the next step in Conway's Life?
423 Solvers
Flag largest magnitude swings as they occur
524 Solvers
Set the array elements whose value is 13 to 0
753 Solvers
244 Solvers
Side of an equilateral triangle
1522 Solvers