This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
didnt see that Cody changed the test suite of this problem and I lost one important badge. such a shame..
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
str = 'a';
score = 1;
assert(isequal(scrabble_score(str),score))
|
2 | Pass |
%%
str = 'matlab';
score = 10;
assert(isequal(scrabble_score(str),score))
|
3 | Pass |
%%
str = 'quetzalcoatl';
score = 32;
assert(isequal(scrabble_score(str),score))
|
4 | Pass |
%%
str = 'quartz';
score = 24;
assert(isequal(scrabble_score(str),score))
|
5 | Pass |
%%
str = 'jackal';
score = 19;
assert(isequal(scrabble_score(str),score))
|