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 0 0 0 0 0 0 0 1 0 0 1 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 0 0 0 0 0])
assert(isequal(isThreeKind(hm),y_correct))
y_correct =
flag: 1
usedCards: [4x13 logical]
out =
usedCards: [4x13 double]
flag: 1
out =
usedCards: [4x13 double]
flag: 1
|
2 | 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 0 0
1 0 0 1 0 0 0 0 0 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 0 1
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
0 0 0 0 0 0 0 0 1 0 0 0 0])
assert(isequal(isThreeKind(hm),y_correct))
y_correct =
flag: 1
usedCards: [4x13 logical]
out =
usedCards: [4x13 double]
flag: 1
out =
usedCards: [4x13 double]
flag: 1
|
3 | Pass |
%%
hm = [1 1 0 0 0 0 0 0 1 1 0 0 1
0 1 0 0 0 0 0 0 1 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 0 0 0 0 0];
y_correct.flag = true;
y_correct.usedCards = logical([1 0 0 0 0 0 0 0 0 0 0 0 1
0 0 0 0 0 0 0 0 0 0 0 1 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(isThreeKind(hm),y_correct))
y_correct =
flag: 1
usedCards: [4x13 logical]
out =
usedCards: [4x13 double]
flag: 1
out =
usedCards: [4x13 double]
flag: 1
|
4 | Pass |
%%
hm = [1 1 0 0 0 0 0 0 1 1 0 0 1
0 1 0 0 0 0 0 0 1 0 0 1 0
1 0 0 1 0 0 0 0 1 0 0 0 1
1 0 0 0 0 0 0 0 0 0 0 0 1];
y_correct.flag = true;
y_correct.usedCards = logical([1 0 0 0 0 0 0 0 0 0 0 0 1
0 0 0 0 0 0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0 0 0 0 0 1
1 0 0 0 0 0 0 0 0 0 0 0 0])
assert(isequal(isThreeKind(hm),y_correct))
y_correct =
flag: 1
usedCards: [4x13 logical]
out =
usedCards: [4x13 double]
flag: 1
out =
usedCards: [4x13 double]
flag: 1
|
5 | Pass |
%%
hm = [1 1 0 0 0 0 0 0 1 1 0 0 1
0 1 0 0 0 0 0 0 0 0 0 1 0
1 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 = 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(isThreeKind(hm),y_correct))
y_correct =
flag: 0
usedCards: [4x13 logical]
|
17477 Solvers
962 Solvers
Find state names that start with the letter N
598 Solvers
Back to basics 25 - Valid variable names
293 Solvers
149 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!