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))
|
Number of 1s in the Binary Representation of a Number
356 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
Back to basics 19 - character types
225 Solvers
Remove the two elements next to NaN value
411 Solvers
Find the maximum number of decimal places in a set of numbers
734 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!