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))
|
17216 Solvers
Convert a structure into a string
95 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Make a vector of prime numbers
194 Solvers
A Simple Tide Gauge with MATLAB
342 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!