Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
list = [4 1
3 4
1 1
5 5
3 5
0 4
2 0];
%2
correct = [2 1 3 7 6 5 4];
assert(isequal(findBestOrderedDominoes(list),correct))
|
2 | Pass |
%%
list = [1 1
2 5
7 5
8 1
1 3
7 8
3 6];
%3
correct = [2 6 4 1 5 7 3];
assert(isequal(findBestOrderedDominoes(list),correct))
|
3 | Pass |
%%
list = [8 5
3 9
10 6
6 2
2 17
18 14
9 5];
%6
correct = [3 1 2 7 4 5 6];
assert(isequal(findBestOrderedDominoes(list),correct))
|
5171 Solvers
Back to basics 17 - white space
209 Solvers
Getting the absolute index from a matrix
178 Solvers
251 Solvers
198 Solvers