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
|
Find the sum of all the numbers of the input vector
25611 Solvers
1310 Solvers
Increment a number, given its digits
505 Solvers
120 Solvers
07 - Common functions and indexing 6
281 Solvers