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.
It only states that the TEST round it's answer to 6 decimal places.
Not that you should round your answer to 6 decimal places.
Next time read carefully before spamming a forum about it.
Does it matter when you have to join the list to a string to perform "string comparison" for this case?
Is the comparison of two lists faster than the comparison of two strings?
Or are they considered the same?
it's more simple)
Just to make it a little bit simpler
Change
if a <= 0:
return False
else:
return True
by
return a <= 0
Really shows that I must think longer about the solution. Bravo to you!