Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
clear
clc
|
2 | 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))
|
3 | 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))
|
4 | 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))
|
5 | 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))
|
337 Solvers
Remove white space from the string
168 Solvers
401 Solvers
5119 Solvers
273 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!