Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
sentence = 'this is BETTER than C++';
corrected = 'This Is Better Than C++';
assert(isequal(autoCase(sentence), corrected))
|
2 | Pass |
sentence = 'hEy, tHis iS vErY wroNg!';
corrected = 'Hey, This Is Very Wrong!';
assert(isequal(autoCase(sentence), corrected))
|
3 | Pass |
sentence = 'tHIS sENTENCE wILL bE iNVERTED';
corrected = 'This Sentence Will Be Inverted';
assert(isequal(autoCase(sentence), corrected))
|
4 | Pass |
sentence = 'This Sentence Will Not Be Changed';
corrected = 'This Sentence Will Not Be Changed';
assert(isequal(autoCase(sentence), corrected))
|
5 | Pass |
sentence = 'HELLO THERE';
corrected = 'Hello There';
assert(isequal(autoCase(sentence), corrected))
|
6 | Pass |
sentence = 'AlTeRnAtInG cApS';
corrected = 'Alternating Caps';
assert(isequal(autoCase(sentence), corrected))
|
367 Solvers
376 Solvers
384 Solvers
Matrix of almost all zeros, except for main diagonal
152 Solvers
130 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!