Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
str = 'Can you tell if there is anything wrong with this string?';
correct_words = '';
mistyped_words = {};
assert(isequal(mistype(str,correct_words),mistyped_words))
mistyped_words =
0×0 empty cell array
mistyped_words =
0×0 empty cell array
|
2 | Fail |
str = 'I lvoe MATLAB';
correct_words = '*love';
mistyped_words = {'lvoe'};
assert(isequal(mistype(str,correct_words),mistyped_words))
mistyped_words =
1×1 cell array
{1×1 cell}
|
3 | Fail |
str = 'Recieve and beleive are tow commonly misspelled words';
correct_words = '*Receive *believe *two';
mistyped_words = {'Recieve','beleive','tow'};
assert(isequal(mistype(str,correct_words),mistyped_words))
mistyped_words =
1×3 cell array
{1×1 cell} {1×1 cell} {1×1 cell}
|
4 | Fail |
str = 'Ihppopatomus si a hard word to psell';
correct_words = '*Hippopotamus *is *spell';
mistyped_words = {'Ihppopatomus','si','psell'};
assert(isequal(mistype(str,correct_words),mistyped_words))
mistyped_words =
1×3 cell array
{1×1 cell} {1×1 cell} {1×1 cell}
|
4106 Solvers
Remove the small words from a list of words.
672 Solvers
235 Solvers
284 Solvers
62 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!