Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
hm = [0 1 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 1 0 0 0 0 0 0 1 1 0 1 1
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(isFlush(hm),y_correct))
y_correct =
flag: 1
usedCards: [4x13 logical]
|
2 | Pass |
%%
hm = [1 1 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([1 0 0 0 0 0 0 0 1 1 0 1 1
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(isFlush(hm),y_correct))
y_correct =
flag: 1
usedCards: [4x13 logical]
|
3 | Pass |
%%
hm = [1 1 0 0 0 0 0 0 1 1 0 1 0
0 1 0 0 0 0 0 0 1 0 0 1 0
1 1 0 1 0 0 0 0 1 1 1 1 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 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 1 1 1 1 0
0 0 0 0 0 0 0 0 0 0 0 0 0])
assert(isequal(isFlush(hm),y_correct))
y_correct =
flag: 1
usedCards: [4x13 logical]
|
4 | Pass |
%%
hm = [1 1 0 0 0 0 0 0 1 1 0 1 0
0 1 0 0 0 0 0 0 1 0 0 1 0
1 1 0 1 0 0 0 0 1 1 1 1 0
1 0 0 0 0 0 0 0 1 1 1 1 0];
y_correct.flag = true;
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
1 0 0 0 0 0 0 0 1 1 1 1 0
0 0 0 0 0 0 0 0 0 0 0 0 0])
assert(isequal(isFlush(hm),y_correct))
y_correct =
flag: 1
usedCards: [4x13 logical]
|
5 | Pass |
%%
hm = [1 1 0 0 0 0 0 0 0 0 0 1 0
0 1 0 0 0 0 0 0 1 0 0 1 0
0 0 0 0 0 0 0 0 1 0 1 1 0
1 0 0 0 0 0 0 0 1 1 0 1 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(isFlush(hm),y_correct))
y_correct =
flag: 0
usedCards: [4x13 logical]
|
14227 Solvers
Find state names that end with the letter A
553 Solvers
1594 Solvers
Numbers with prime factors 2, 3 and 5.
115 Solvers
163 Solvers