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.
Bro, thank You so much! The description is awful AF. Without You I would skip this kata...
i did the same mistake :) mixing between diameter and radius , One should always focus while reading !
Thank you for this explanation. I am realive new to javascript and I was confusused.
64 minutes here. A bit long, I'd say.
Blocked access into midpoint rounding was like a kick between legs.
Ahh! What a silly mistake, thank you :)
Thanks!
Slightly modified the description. Thanks for your posts.
Rotate four times is only for the given example. Please can you say what I should add.
What?! I thought that's what everybody did?
Because that's not the way to address it.
hello(None)
andhello()
are not the same. I would say google the error message but the results that search gives is not that helpful either. Try looking foroptional arguments
in Python (that's what the kata difficulty is about).Use question label next time if you don't know how to do things, issue is for problems with the kata (and always look at the amount of completions in the language you're trying first, if some people solved it, most probably it's a problem with your code, not the kata itself).
This comment is hidden because it contains spoiler information about the solution
Hope that help. Cheers.
Try this ;-)
https://docs.python.org/3/tutorial/floatingpoint.html#tut-fp-issues
Also it should be
5
is not divisible by2
, corrected.It's a natural phenomenom of floating point numbers because you cannot represent values with 2 decimal places exactly in floats (as
5
is not divisible by2
).The test for
2.675
should've never been in there in the first place. I've removed it from the sample tests. The actual tests never have it anyway so you can just submit as normal ;-)Loading more items...