Ad
  • Custom User Avatar

    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

  • Custom User Avatar

    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.