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))
do =
1
|
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))
do =
1
|
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))
do =
1
|
Find the sum of all the numbers of the input vector
25654 Solvers
Remove the small words from a list of words.
474 Solvers
200 Solvers
Generate N equally spaced intervals between -L and L
441 Solvers
481 Solvers