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));
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));
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));
s2 =
'I had to that "" is not a word'
|
Count from 0 to N^M in base N.
200 Solvers
Set some matrix elements to zero
228 Solvers
Generate a string like abbcccddddeeeee
155 Solvers
299 Solvers
Matlab Basics - Convert a row vector to a column vector
302 Solvers