Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
str = 'a';
score = 1;
assert(isequal(scrabble_score(str),score))
[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 scrabble_score (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
str = 'matlab';
score = 10;
assert(isequal(scrabble_score(str),score))
[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 scrabble_score (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
str = 'quetzalcoatl';
score = 32;
assert(isequal(scrabble_score(str),score))
[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 scrabble_score (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
str = 'quartz';
score = 24;
assert(isequal(scrabble_score(str),score))
[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 scrabble_score (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
str = 'jackal';
score = 19;
assert(isequal(scrabble_score(str),score))
[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 scrabble_score (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
307 Solvers
middleAsColumn: Return all but first and last element as a column vector
317 Solvers
Getting the indices from a vector
1450 Solvers
624 Solvers
396 Solvers