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))
|
Find relatively common elements in matrix rows
645 Solvers
367 Solvers
Find the largest value in the 3D matrix
899 Solvers
The sum of the numbers in the vector
342 Solvers
112 Solvers