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));
ans =
'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));
ans =
'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));
ans =
'I had to that "" is not a word'
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35557 Solvers
9825 Solvers
Compute a dot product of two vectors x and y
750 Solvers
Cell Counting: How Many Draws?
581 Solvers
Change the sign of even index entries of the reversed vector
296 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!