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.
Question. I came up with a very similar solution. Only difference was I used name.lower()[0] instead of name[0].lower(). I'm not super familar with best practices in terms of performance. But did you choose your solution name[0].lower() because it technically performs quicker than name.lower()[0]?
Thanks for any insight you can provide!