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))
score =
1
|
2 | Pass |
%%
list = [1 2; 5 4; 2 4];
order = [2 1 3];
y_correct = 3;
assert(isequal(scoreOrderedDominoes(list, order),y_correct))
score =
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))
score =
14
|
4 | Pass |
%%
list = [1 2; 6 6; 2 4];
order = [2 1 3];
y_correct = 5;
assert(isequal(scoreOrderedDominoes(list, order),y_correct))
score =
5
|
5 | Pass |
%%
list = [1 2; 5 4; 2 4];
order = [1 2 3];
y_correct = 5;
assert(isequal(scoreOrderedDominoes(list, order),y_correct))
score =
5
|
1091 Solvers
What is the next step in Conway's Life?
640 Solvers
213 Solvers
895 Solvers
Back to basics 25 - Valid variable names
293 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!