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.
python fork to address the below issue.
suggested tag:
geometry
Go translation
Never round float results.
https://docs.codewars.com/authoring/recipes/floating-point
Starting code for python translation has a variable
r
while kata description specifies variablea
.The question description doesn't say this, but the inner radius is half the outer radius.
NASM translation
Kata description says
But
C
function signature uses(unsigned char radius)
??
Should be:
(int r)
Test suite should use
assert_almost_equals
instead of rounding +assert_equals
This comment is hidden because it contains spoiler information about the solution
C++ treanlation
Ruby 3.0 should be enabled, see this to learn how to do it
Please organize the structure of test fixture as following (although it has been mentioned in the attached link, I'm repeated here again)
This comment is hidden because it contains spoiler information about the solution