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))
|
Return the largest number that is adjacent to a zero
3749 Solvers
3892 Solvers
1900 Solvers
516 Solvers
Check that number is whole number
1070 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!