This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
games = {'D','D','A','H','D','H'};
draws = 3;
assert(isequal(how_many_draws(games),draws))
check =
1×6 logical array
1 1 0 0 1 0
draws =
3
|
2 | Pass |
games = {'D','D'};
draws = 2;
assert(isequal(how_many_draws(games),draws))
check =
1×2 logical array
1 1
draws =
2
|
3 | Pass |
games = {'H','H','A'};
draws = 0;
assert(isequal(how_many_draws(games),draws))
check =
1×3 logical array
0 0 0
draws =
0
|
4 | Pass |
games = {'D','H','H','A','D','H','H','A','D','H','H','A','D','D'};
draws = 5;
assert(isequal(how_many_draws(games),draws))
check =
1×14 logical array
1 0 0 0 1 0 0 0 1 0 0 0 1 1
draws =
5
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!