Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'Will the ecological jail rule outside the tear';
y_correct = 'tear the outside rule jail ecological the Will';
assert(isequal(reverseWords(x),y_correct))
s2 =
'tear'
s2 =
'tear the'
s2 =
'tear the outside'
s2 =
'tear the outside rule'
s2 =
'tear the outside rule jail'
s2 =
'tear the outside rule jail ecological'
s2 =
'tear the outside rule jail ecological the'
s2 =
'tear the outside rule jail ecological the Will'
s2 =
'tear the outside rule jail ecological the Will'
|
2 | Pass |
x = 'That computer programmer kept the room warm';
y_correct = 'warm room the kept programmer computer That';
assert(isequal(reverseWords(x),y_correct))
s2 =
'warm'
s2 =
'warm room'
s2 =
'warm room the'
s2 =
'warm room the kept'
s2 =
'warm room the kept programmer'
s2 =
'warm room the kept programmer computer'
s2 =
'warm room the kept programmer computer That'
s2 =
'warm room the kept programmer computer That'
|
3 | Pass |
x = 'trivial';
y_correct = 'trivial';
assert(isequal(reverseWords(x),y_correct))
s2 =
'trivial'
s2 =
'trivial'
|
Remove the small words from a list of words.
474 Solvers
332 Solvers
108 Solvers
2474 Solvers
298 Solvers