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 =
'Will '
s2 =
'the Will '
s2 =
'ecological the Will '
s2 =
'jail ecological the Will '
s2 =
'rule jail ecological the Will '
s2 =
'outside rule jail ecological the Will '
s2 =
'the outside rule jail ecological the Will '
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 =
'That '
s2 =
'computer That '
s2 =
'programmer computer That '
s2 =
'kept programmer computer That '
s2 =
'the kept programmer computer That '
s2 =
'room the kept programmer computer That '
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'
|
612 Solvers
323 Solvers
271 Solvers
198 Solvers
728 Solvers