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.
Good call. Thank you for the feedback!
I did basically the same thing and saw someone had set the percentage outside the loop, which will make it faster!
nice job doing the percentage outside the while loop. I didn't think of that. Will save time not having to calculate it every loop!
This comment is hidden because it contains spoiler information about the solution
Is there a benefit to having the elif as opposed to just continuing execution outside of the if? Would make for cleaner code since you'd never get into that elif unless you should be continuing execution, right?