Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
games = {'D','D','A','H','D','H'};
draws = 3;
assert(isequal(how_many_draws(games),draws))
|
2 | Pass |
games = {'D','D'};
draws = 2;
assert(isequal(how_many_draws(games),draws))
|
3 | Pass |
games = {'H','H','A'};
draws = 0;
assert(isequal(how_many_draws(games),draws))
|
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))
|
9868 Solvers
Find all elements less than 0 or greater than 10 and replace them with NaN
13048 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
277 Solvers
260 Solvers
Find the dimensions of a matrix
372 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!