Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
games = {'D','D','A','H','D','H'};
draws = 3;
assert(isequal(how_many_draws(games),draws))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In how_many_draws (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
games = {'D','D'};
draws = 2;
assert(isequal(how_many_draws(games),draws))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In how_many_draws (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
games = {'H','H','A'};
draws = 0;
assert(isequal(how_many_draws(games),draws))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In how_many_draws (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
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))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In how_many_draws (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
Remove the small words from a list of words.
672 Solvers
Back to basics 4 - Search Path
322 Solvers
Create a square matrix of multiples
383 Solvers
282 Solvers
Make a vector of prime numbers
195 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!