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.
Already specified, follow the instructions.
In English Y is "sometimes" a vowel, which makes this even MORE frustrating!
Thank you kindly for these remarks, I'll be sure to keep an eye out for these issues in the future :)
Hi, two quick remarks about your solution.
Consider using variable names that mean something, don't juse use a letter.
This would prevent two things: having to remember that "a" means "25" and "b" means "100", and having to add those comments to explain your variables.
If you want to keep the variable names very short for some reason, you could for example have used:
With a bit more character:
My second comment is about these two lines at the start:
I think that those can be classified as "premature optimization".
You should be able to remove those lines and have the code still work.
They won't bring much in terms of performance.
Kind regards,
Maurice
Swift translation kumited. Please review and approve if satisfied.
Please fix the specification, vowels are not the same depending on the language used - e.g. while in English Y is not one, in Polish it is. A little more specification would mean a lot less frustration for us users :)