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
|
2 | Pass |
str = 'I lvoe MATLAB';
correct_words = '*love';
mistyped_words = {'lvoe'};
assert(isequal(mistype(str,correct_words),mistyped_words))
mistyped_words =
1×1 cell array
{'lvoe'}
|
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
{'beleive'} {'beleive'} {'tow'}
|
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
{'Ihppopatomus'} {'to'} {'psell'}
|
485 Solvers
Getting the indices from a vector
3207 Solvers
Getting the indices from a matrice
360 Solvers
2314 Solvers
Convert given decimal number to binary number.
636 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!