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.
I similarly was annoyed that we had to round the distance. I ran into a weird problem using int() vs round().
from math import sqrt
r2 = 5
rA = int( sqrt(r2)*10000 )/10000 # 2.236
rB = round( r2**0.5, 4 ) # 2.236
This happened ONLY when r-squared equalled 5.
When I did the translation, I didn't put anything special in the way the tests are done. So I think this is due to cw's way to handle Junit tests. I cannot do anything about that.
Debugging with Java on cw may often be a pin in the ass... ;-/
Well, it seems that the trouble lays on your side. ;)
Not knowing your code, I cannot help you further so I'll let you investigate a bit your code (with the console! ;p ). Let me know if you encounter troubles.
Could you paste your code here? (do not forget the spoiler flag)
EDIT: btw, did you try to print the input in the console?