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.
nice
This comment is hidden because it contains spoiler information about the solution
this is so concise
This comment is hidden because it contains spoiler information about the solution
@ben-hatcher, excellent explaination. Now I understand this much better.
the operation of extracting the square root of a number and then squaring
it can lead to minor rounding errors due to
working with floating point numbers
the
Smort!
I know this is old, but for anyone reading now,
sum
can also accept arange
(in fact, anyiterable
) object, which can save you some memoryThis made me cry.
Thanks for clear this error out, morebebop.
I ran into the issue with complex number. It was just because the first test is for -1 and you can't take the square root of a negative number. That's why I ended up checking for a negative a number and returning False. The solution we're under also checked that n was positive before returning True
This comment is hidden because it contains spoiler information about the solution
A very beautiful use of closure
This comment is hidden because it contains spoiler information about the solution
Loading more items...