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.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
That looks good. Thanks.
The kata would benefit from a better description / title Super Duper Easy is not informative.
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.
In the python version I'm having to count spaces as consonants to pass the tests.
Hi Matt,
The description of the validator class was a little bit confusing - changing the description would definiately help.
Thanks
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.