Problem 129. All capital?
Are all the letters in the input string capital letters?
Examples:
'MNOP' -> 1 'MN0P' -> 0
Solution Stats
Problem Comments
-
8 Comments
Make your checks robust to brute force approach.
You should add more checks to the test suite.
I agree with Oleg and Gaik: please have a rich test suite.
You should include a test case with a string that contains lowercase letters as well as uppercase letters, numbers, and symbols.
It is not checking lowercase letters. Give some test for that.Otherwise problem statement should be different.
I added a test for lowercase.
the description of the problem is misspecified. "Are all the letters in the input string capital letters?" Numbers are not letters. The tests treat numbers as lower case.
Test cases are not according to problem statement.
Solution Comments
Show commentsProblem Recent Solvers648
Suggested Problems
-
25347 Solvers
-
Convert a numerical matrix into a cell array of strings
1830 Solvers
-
Back to basics 25 - Valid variable names
324 Solvers
-
Sum the numbers on the main diagonal
581 Solvers
-
Simple equation: Annual salary
4183 Solvers
More from this Author100
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!