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))
|
2 | Pass |
str = 'I lvoe MATLAB';
correct_words = '*love';
mistyped_words = {'lvoe'};
assert(isequal(mistype(str,correct_words),mistyped_words))
|
3 | Pass |
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))
|
4 | Pass |
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))
|
405 Solvers
746 Solvers
250 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
Multiples of a Number in a Given Range
214 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!