Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s1 = 'The rain in Spain falls mainly on the plain';
s2 = 'The in falls mainly on the ';
assert(strcmp(remAin(s1),s2));
s1 =
1×4 cell array
'The ' ' in ' ' falls mainly on the ' ''
s2 =
'The '
s2 =
'The in '
s2 =
'The in falls mainly on the '
s2 =
'The in falls mainly on the '
|
2 | Pass |
s1 = 'The pain from my migraine makes me complain';
s2 = 'The from my migraine makes me ';
assert(strcmp(remAin(s1),s2));
s1 =
1×3 cell array
'The ' ' from my migraine makes me ' ''
s2 =
'The '
s2 =
'The from my migraine makes me '
s2 =
'The from my migraine makes me '
|
3 | Pass |
s1 = 'I had to explain that "ain" is not a word';
s2 = 'I had to that "" is not a word';
assert(strcmp(remAin(s1),s2));
s1 =
1×3 cell array
'I had to ' ' that "' '" is not a word'
s2 =
'I had to '
s2 =
'I had to that "'
s2 =
'I had to that "" is not a word'
|
1901 Solvers
Get the area codes from a list of phone numbers
532 Solvers
309 Solvers
MATCH THE STRINGS (2 CHAR) very easy
250 Solvers
432 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!