Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
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 =
struct with fields:
flag: 1
usedCards: [4×13 logical]
|
2 | Fail |
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 =
struct with fields:
flag: 1
usedCards: [4×13 logical]
|
3 | Fail |
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 =
struct with fields:
flag: 1
usedCards: [4×13 logical]
|
4 | Fail |
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 =
struct with fields:
flag: 1
usedCards: [4×13 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 =
struct with fields:
flag: 0
usedCards: [4×13 logical]
|
2486 Solvers
786 Solvers
2817 Solvers
Flag largest magnitude swings as they occur
582 Solvers
Determine the number of odd integers in a vector
435 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!