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.
wow
ðŸ˜
To my knowledge, the only time
math.sqrt
would be faster would be when you're doing a large number of square roots. Probably more than you'll see in a kata (but don't quote me on that one).Generally I don't worry about it unless I'm doing something that is centered around a lot of square roots and I'm having issues with optimization. If I do worry about it, I have to test it anyway.
Thanks a lot for the clarification and explanation, would there be any cases where it would be more efficient to use math.sqrt over **?
This comment is hidden because it contains spoiler information about the solution
Is math.sqrt() not faster than **0.5?
Sorry, I missed that. You're right.
Nevermind.
This comment is hidden because it contains spoiler information about the solution
(Silently banging my head against the wall).
what's that up
hmmm, I would like to kick myself in the butt and say der
This comment is hidden because it contains spoiler information about the solution