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.
Whoops! I made a quite stupid error, thanks for reminding me to make sure capitalization worked, I found a broken loop. Forgot
break
only breaks from one loop.That's not a problem, in C++ true and false are aliases for 1 and 0, your code must be wrong. Post it with markdown formatting and marking your post as having spoiler content if you want someone to check it. Check your code handles capitalization right.
When returning bools, C++ returns them as 0 or 1, NOT as true or false, and so I was unable to solve the Kata despite my program working correctly.