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 =
0
score =
1
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
score =
3
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 =
3
score =
3
score =
3
score =
10
score =
12
score =
14
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
score =
5
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 =
3
score =
5
score =
5
|
How to find the position of an element in a vector without using the find function
2477 Solvers
Rotate and display numbered tile
239 Solvers
Detect a number and replace with two NaN's
178 Solvers
484 Solvers
251 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!