Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
hm = [0 0 0 0 0 0 0 0 1 1 0 1 1
0 1 0 0 0 0 0 0 1 0 0 1 0
0 0 0 1 0 0 0 0 1 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0];
y_correct.flag = true;
y_correct.usedCards = logical([0 0 0 0 0 0 0 0 1 0 0 1 0
0 0 0 0 0 0 0 0 1 0 0 1 0
0 0 0 0 0 0 0 0 1 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0])
assert(isequal(isFullHouse(hm),y_correct))
y_correct =
struct with fields:
flag: 1
usedCards: [4×13 logical]
|
2 | Pass |
hm = [0 0 0 0 0 0 0 0 1 1 0 1 1
0 1 0 0 0 0 0 0 1 0 0 1 0
0 0 0 1 0 0 0 0 1 0 0 0 0
0 0 0 0 0 0 0 0 1 0 0 0 0];
y_correct.flag = true;
y_correct.usedCards = logical([0 0 0 0 0 0 0 0 1 0 0 1 0
0 0 0 0 0 0 0 0 1 0 0 1 0
0 0 0 0 0 0 0 0 1 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0])
assert(isequal(isFullHouse(hm),y_correct))
y_correct =
struct with fields:
flag: 1
usedCards: [4×13 logical]
|
3 | Pass |
hm = [0 0 0 0 1 0 0 0 1 1 0 1 1
0 1 0 0 1 0 0 0 0 0 0 1 0
0 0 0 1 0 0 0 0 1 0 0 0 0
0 0 0 0 1 0 0 0 0 0 0 0 0];
y_correct.flag = true;
y_correct.usedCards = logical([0 0 0 0 1 0 0 0 0 0 0 1 0
0 0 0 0 1 0 0 0 0 0 0 1 0
0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 1 0 0 0 0 0 0 0 0])
assert(isequal(isFullHouse(hm),y_correct))
y_correct =
struct with fields:
flag: 1
usedCards: [4×13 logical]
|
4 | Pass |
hm = [0 0 0 0 1 0 0 0 1 1 0 1 1
1 1 0 0 1 0 0 0 0 0 0 0 0
1 0 0 1 1 0 0 0 0 0 0 0 0
1 1 0 0 1 0 0 0 0 0 0 0 0];
y_correct.flag = true;
y_correct.usedCards = logical([0 0 0 0 1 0 0 0 0 0 0 0 0
1 0 0 0 1 0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0 0 0 0 0 0])
assert(isequal(isFullHouse(hm),y_correct))
y_correct =
struct with fields:
flag: 1
usedCards: [4×13 logical]
|
5 | Pass |
hm = [0 0 0 0 0 0 0 0 1 1 0 1 1
0 1 0 0 0 0 0 0 1 0 0 0 0
0 0 0 1 0 0 0 0 1 0 0 0 0
0 0 0 0 0 0 0 0 1 0 0 0 0];
y_correct.flag = false;
y_correct.usedCards = logical([0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0])
assert(isequal(isFullHouse(hm),y_correct))
y_correct =
struct with fields:
flag: 0
usedCards: [4×13 logical]
|
6 | Pass |
hm = [0 0 0 0 0 0 0 0 1 1 0 1 1
1 1 0 0 0 1 0 0 0 0 0 1 0
0 0 0 1 0 1 0 0 1 0 0 0 0
1 0 0 0 0 1 0 0 0 0 0 0 0];
y_correct.flag = true;
y_correct.usedCards = logical([0 0 0 0 0 0 0 0 0 0 0 0 0
1 0 0 0 0 1 0 0 0 0 0 0 0
0 0 0 0 0 1 0 0 0 0 0 0 0
1 0 0 0 0 1 0 0 0 0 0 0 0])
assert(isequal(isFullHouse(hm),y_correct))
y_correct =
struct with fields:
flag: 1
usedCards: [4×13 logical]
|
The Goldbach Conjecture, Part 2
961 Solvers
Remove the polynomials that have positive real elements of their roots.
447 Solvers
Find the sum of the elements in the "second" diagonal
879 Solvers
Back to basics 11 - Max Integer
611 Solvers
579 Solvers