Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
list = [ 1 5
2 1
2 2
3 2
4 8
5 4
5 5
10 3];
correct = [8 4 3 2 1 7 6 5];
assert(isequal(findPerfectOrderedDominoes(list),correct))
|
2 | Pass |
list = [ 1 6
2 2
2 7
7 1
7 8
8 10
10 2
10 10];
correct = [5 6 8 7 2 3 4 1];
assert(isequal(findPerfectOrderedDominoes(list),correct))
|
3 | Pass |
list = [1 1
1 7
2 4
4 6
5 1
6 2
7 4
7 5];
correct = [8 5 1 2 7 4 6 3];
assert(isequal(findPerfectOrderedDominoes(list),correct))
|
4 | Pass |
list = [1 10
3 10
5 3
6 9
7 6
8 7
8 8
9 1
10 5];
correct = [7 6 5 4 8 1 9 3 2];
assert(isequal(findPerfectOrderedDominoes(list),correct))
|
951 Solvers
Read a column of numbers and interpolate missing data
1235 Solvers
Getting the absolute index from a matrix
211 Solvers
Who has power to do everything in this world?
318 Solvers
320 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!