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.
Thanks for the quick reply. Makes sense. I overlooked the multiple return statements.
Do you know if there is a best practice in c++ for single vs multiple returns? Or is that more preference or just debated?
Wouldn't it be more efficient to use "else if" statements. This would require all statements to be run, where else if would stop once a match was found.