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));
words =
9×1 cell array
{'The' }
{'rain' }
{'in' }
{'Spain' }
{'falls' }
{'mainly'}
{'on' }
{'the' }
{'plain' }
s2 =
'The '
s2 =
'The '
s2 =
'The in '
s2 =
'The in '
s2 =
'The in falls '
s2 =
'The in falls mainly '
s2 =
'The in falls mainly on '
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));
words =
8×1 cell array
{'The' }
{'pain' }
{'from' }
{'my' }
{'migraine'}
{'makes' }
{'me' }
{'complain'}
s2 =
'The '
s2 =
'The '
s2 =
'The from '
s2 =
'The from my '
s2 =
'The from my migraine '
s2 =
'The from my migraine makes '
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));
words =
10×1 cell array
{'I' }
{'had' }
{'to' }
{'explain'}
{'that' }
{'"ain"' }
{'is' }
{'not' }
{'a' }
{'word' }
s2 =
'I '
s2 =
'I had '
s2 =
'I had to '
s2 =
'I had to '
s2 =
'I had to that '
s2 =
'I had to that "" '
s2 =
'I had to that "" is '
s2 =
'I had to that "" is not '
s2 =
'I had to that "" is not a '
s2 =
'I had to that "" is not a word '
|
232 Solvers
Duplicate each element of a vector.
455 Solvers
345 Solvers
263 Solvers
Area of an equilateral triangle
1704 Solvers