Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Duplicate issue.
The function name in the descriptions says "is_uppercase" but the Test cases check for "isUpperCase". This is completely different and actually misleading. My solution for example failed all tests because of this until I noticed the call used in the Test. They should be changed to match
The function name in the description of the exercise is a bit misleading. The description specifies the function name as "is_uppercase" but the tests work with "isUpperCase" which is completely different. They should be changed to match. I had a working solution that failed all tests because of this.