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))
order =
8 4 3 2 1 7 6 5
|
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))
order =
5 6 8 7 2 3 4 1
|
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))
order =
8 5 1 2 7 4 6 3
|
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))
order =
7 6 5 4 8 1 9 3 2
|
Return a list sorted by number of occurrences
1504 Solvers
1051 Solvers
235 Solvers
205 Solvers
Output any real number that is neither positive nor negative
316 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!