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.
why is that?
Sadly in Python using string functions is sometimes more performant than calculating these values.
From my point of view (I'm someone who is just starting to learn Python), the most important thing when designing a function wouldn't be efficiency, the time it takes to execute, right? Whenever I manage to solve a function, I compare it with others using the timeit module, and if one runs faster than another, it's better. Many times, I find that some written in just one line are not the most efficient.