Ad
  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    That looks good. Thanks.

  • Custom User Avatar

    The kata would benefit from a better description / title Super Duper Easy is not informative.

  • Custom User Avatar

    The python tests are counting punctuation and whitespace as consonants, in addition there is non-printing whitespace that is supposed to be ignored in the mixed tests - to get the test to pass I had to mangle the code to fix the use cases.

  • Custom User Avatar

    In the python version I'm having to count spaces as consonants to pass the tests.

  • Custom User Avatar

    Hi Matt,
    The description of the validator class was a little bit confusing - changing the description would definiately help.
    Thanks

  • Custom User Avatar

    In python the validator.login() function does not return True or False it returns one of two stings:
    'Successfully Logged in!' or 'Wrong username or password!'
    Changing the preload section to reflect this would be useful.
    Also the following sentences in the Preload section does not make sense:
    "This will be used to check if the username and password exist but only check if the password is valid."
    Does the Validator function check if the username and password exist or only check if the password is valid? The but causes confusion.
    Thanks for the kata.