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))
ans =
1
|
2 | Pass |
list = [1 2; 5 4; 2 4];
order = [2 1 3];
y_correct = 3;
assert(isequal(scoreOrderedDominoes(list, order),y_correct))
ans =
3
|
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))
ans =
14
|
4 | Pass |
list = [1 2; 6 6; 2 4];
order = [2 1 3];
y_correct = 5;
assert(isequal(scoreOrderedDominoes(list, order),y_correct))
ans =
5
|
5 | Pass |
list = [1 2; 5 4; 2 4];
order = [1 2 3];
y_correct = 5;
assert(isequal(scoreOrderedDominoes(list, order),y_correct))
ans =
5
|
309 Solvers
Back to basics 6 - Column Vector
908 Solvers
Check if number exists in vector
4470 Solvers
462 Solvers
Is this is a Tic Tac Toe X Win?
438 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!