Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%% Test 1
textIn1 = strcat('I am having a great time at summer camp. The camp', ...
' counselors are great and the activities are great. Monday', ...
' we went kayaking and Tuesday we learned archery. Archery was', ...
' great and I hit the bull''s eye which everyone was said was', ...
' really great. -Love Johnny');
textOut1 = strcat('I am having a great time at summer camp. The camp', ...
' counselors are great and the activities are awesome. Monday', ...
' we went kayaking and Tuesday we learned archery. Archery was', ...
' great and I hit the bull''s eye which everyone was said was', ...
' really awesome. -Love Johnny');
assert(strcmp(improve(textIn1),textOut1))
|
2 | Pass |
%% Test 2
textIn2 = strcat('This sentence has great twice, which is great.');
textOut2 = strcat('This sentence has great twice, which is awesome.');
assert(strcmp(improve(textIn2),textOut2))
|
3 | Pass |
%% Test 3
textIn3 = strcat('Summer camp this year has been so great and I have', ...
' made so many great friends. I will treasure the great memories', ...
' and great times forever. It was truly an awesome time.');
textOut3 = strcat('Summer camp this year has been so great and I have', ...
' made so many awesome friends. I will treasure the great memories', ...
' and awesome times forever. It was truly an awesome time.');
assert(strcmp(improve(textIn3),textOut3))
|
Return a list sorted by number of occurrences
1504 Solvers
926 Solvers
Remove the two elements next to NaN value
411 Solvers
147 Solvers
251 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!