Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
list = [5 2
3 7
4 9
2 3
8 2
3 5
8 2
7 8
4 2
8 2];
y_correct = [0 0 1 1 1 1 1 1 0 1];
assert(isequal(findBestDominoeOrientation(list),y_correct))
|
2 | Pass |
%%
list = [0 8
4 8
2 0
8 0
5 7
7 2
1 6
2 6
2 7
0 2];
y_correct = [0 1 0 1 1 1 1 0 1 1];
assert(isequal(findBestDominoeOrientation(list),y_correct))
|
3 | Pass |
%%
list = [7 5
3 1
5 1
6 5
4 8
2 6
5 1
1 3
5 9
9 2
0 7
1 7];
y_correct = [0 0 1 1 1 0 0 0 0 0 0 1];
assert(isequal(findBestDominoeOrientation(list),y_correct))
|
4 | Pass |
%%
list = [0 4
0 3
8 2
2 5];
y_correct = [1 0 1 1];
assert(isequal(findBestDominoeOrientation(list),y_correct))
|
2401 Solvers
Least common multiple of many numbers
189 Solvers
4329 Solvers
284 Solvers
Number of digits in an integer
336 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!