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))
|
2 | Pass |
list = [1 2; 5 4; 2 4];
order = [2 1 3];
y_correct = 3;
assert(isequal(scoreOrderedDominoes(list, order),y_correct))
|
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))
|
4 | Pass |
list = [1 2; 6 6; 2 4];
order = [2 1 3];
y_correct = 5;
assert(isequal(scoreOrderedDominoes(list, order),y_correct))
|
5 | Pass |
list = [1 2; 5 4; 2 4];
order = [1 2 3];
y_correct = 5;
assert(isequal(scoreOrderedDominoes(list, order),y_correct))
|
4599 Solvers
Find common elements in matrix rows
1232 Solvers
Getting the row and column location from a matrix
236 Solvers
420 Solvers
2101 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!