Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
list = {[1 5; 2 3; 2 2; 3 4; 0 3],
[0 4; 1 5; 2 2; 4 5; 4 6],
[7 7; 3 8; 4 7; 5 9; 0 4]};
selections = [4 4 4];
assert(isequal(ChooseBestFittingDominoes(list),selections))
ans =
[]
|
2 | Pass |
list = {[1 4; 2 2; 1 1; 3 3],[1 2; 2 3],[2 2]};
selections = [3 1 1];
assert(isequal(ChooseBestFittingDominoes(list),selections))
ans =
[]
|
Project Euler: Problem 6, Natural numbers, squares and sums.
782 Solvers
How many trades represent all the profit?
460 Solvers
279 Solvers
Relative ratio of "1" in binary number
151 Solvers
465 Solvers