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.
Do we tho? Why would we?
I know on this site we tend toward very minimal variable names, but ^this kind of descriptive naming is actually best practice
I like your take on this solution
I appreciate the input! I'm new to Java (coming from a background in JavaScript) so any help is appreciated. I'll take a look at the .equals() method and refactor my code.
You might want to avoid comparing Strings with ==, as it can fail under some situations.
Try using string1.equals(string2) instead which is very reliable.