Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x='Blogs , Trendy , Cody , Contest .';
y='Blogs, Trendy, Cody, Contest.';
assert(isequal(cozy_cody(x),y))
ans =
Blogs , Trendy , Cody , Contest .
ans =
Blogs, Trendy, Cody, Contest.
|
2 | Pass |
x='Trendy , Cody , Contest .';
y='Trendy, Cody, Contest.';
assert(isequal(cozy_cody(x),y))
ans =
Trendy , Cody , Contest .
ans =
Trendy, Cody, Contest.
|
3 | Pass |
x='One Two Three Four Five Six Seven Eight Nine Ten';
y='One Two Three Four Five Six Seven Eight Nine Ten';
assert(isequal(cozy_cody(x),y))
ans =
One Two Three Four Five Six Seven Eight Nine Ten
ans =
One Two Three Four Five Six Seven Eight Nine Ten
|
4 | Pass |
x='1, 2, 3, 4, 5, 6, 7, 8, 9, 10';
y='1, 2, 3, 4, 5, 6, 7, 8, 9, 10';
assert(isequal(cozy_cody(x),y))
ans =
1, 2, 3, 4, 5, 6, 7, 8, 9, 10
ans =
1, 2, 3, 4, 5, 6, 7, 8, 9, 10
|
5 | Pass |
x='1 , and 3 , and 7 , and 12';
y='1, and 3, and 7, and 12';
assert(isequal(cozy_cody(x),y))
ans =
1 , and 3 , and 7 , and 12
ans =
1, and 3, and 7, and 12
|
6 | Pass |
x='Hello There !';
y='Hello There!';
assert(isequal(cozy_cody(x),y))
ans =
Hello There !
ans =
Hello There!
|
23036 Solvers
650 Solvers
451 Solvers
Find a subset that divides the vector into equal halves
289 Solvers
Flag largest magnitude swings as they occur
524 Solvers