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 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];
y_correct.flag = true;
y_correct.usedCards = logical([0 1 0 0 0 0 0 0 1 0 0 0 1
0 1 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 0 0 0 0 0 0 0 0 0 0])
assert(isequal(isTwoPair(hm),y_correct))
y_correct =
struct with fields:
flag: 1
usedCards: [4×13 logical]
l =
1 0 0 0 0 0 0 1 0 0 0 1 0
1 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 0 0 0 0 0 0 0 0 0 0 0
out =
struct with fields:
flag: 1
out =
struct with fields:
flag: 1
usedCards: [4×13 logical]
|
2 | Fail |
hm = [0 1 0 0 0 0 0 0 1 1 0 0 0
0 1 0 0 0 0 0 0 0 0 0 0 0
1 0 0 1 0 0 0 0 1 1 0 0 0
1 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 1 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 1 0 0 0
1 0 0 0 0 0 0 0 0 0 0 0 0])
assert(isequal(isTwoPair(hm),y_correct))
y_correct =
struct with fields:
flag: 1
usedCards: [4×13 logical]
l =
0 0 0 0 0 0 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 1 0 0 0 1
0 0 0 0 0 0 0 0 0 0 0 0 1
out =
struct with fields:
flag: 1
out =
struct with fields:
flag: 1
usedCards: [4×13 logical]
|
3 | Pass |
hm = [0 1 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 0 0 1 0 0 0 0 1 1 0 0 0
1 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(isTwoPair(hm),y_correct))
y_correct =
struct with fields:
flag: 0
usedCards: [4×13 logical]
out =
struct with fields:
flag: 0
out =
struct with fields:
flag: 0
usedCards: [4×13 logical]
|
4 | Fail |
hm = [0 1 0 0 0 0 0 0 1 1 0 0 0
0 1 0 0 0 0 0 0 0 1 0 0 0
1 0 0 1 0 0 0 0 1 1 0 0 0
1 0 0 0 0 0 0 0 0 1 0 0 0];
y_correct.flag = true;
y_correct.usedCards = logical([0 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
1 0 0 0 0 0 0 0 0 1 0 0 0
1 0 0 0 0 0 0 0 0 0 0 0 0])
assert(isequal(isTwoPair(hm),y_correct))
y_correct =
struct with fields:
flag: 1
usedCards: [4×13 logical]
l =
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 1 0 0 0 1
0 0 0 0 0 0 0 0 0 0 0 0 1
out =
struct with fields:
flag: 1
out =
struct with fields:
flag: 1
usedCards: [4×13 logical]
|
5 | Fail |
hm = [0 1 0 0 0 0 0 0 1 1 0 0 0
0 1 0 0 0 0 0 0 0 1 0 0 0
1 0 0 1 0 0 0 0 1 1 0 0 0
0 0 0 0 0 0 0 0 0 1 0 0 0];
y_correct.flag = true;
y_correct.usedCards = logical([0 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
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])
assert(isequal(isTwoPair(hm),y_correct))
y_correct =
struct with fields:
flag: 1
usedCards: [4×13 logical]
l =
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 1 0 0 0 1
0 0 0 0 0 0 0 0 1 0 0 0 0
out =
struct with fields:
flag: 1
out =
struct with fields:
flag: 1
usedCards: [4×13 logical]
|
6 | Pass |
hm = [0 0 0 0 0 0 0 0 0 1 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 1 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(isTwoPair(hm),y_correct))
y_correct =
struct with fields:
flag: 0
usedCards: [4×13 logical]
out =
struct with fields:
flag: 0
out =
struct with fields:
flag: 0
usedCards: [4×13 logical]
|
2486 Solvers
Remove the small words from a list of words.
672 Solvers
485 Solvers
Project Euler: Problem 10, Sum of Primes
707 Solvers
38 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!