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.
Can someone tell me how the translation process works? When do I get "credit" for having translated a kata? What happens when my translation is forked and then my translation is deprecated? Thanks.
I get the following failed test:
Testing for '19 15 7 18 3 - 6 13 19 + 6 * 17 - + - - ^ /'
"It should work for random inputs too: 0 should equal 6.530790981007351e-203"
The division should be integer division, as per "Note: for simplicity's sake, assume that the "/" operator behaves like it usually does in the chosen language: float division in JS, integer division in both Ruby and Python 2 (the defaul Python on this site)."
Using integer division, the results should never be 6.530790981007351e-203.
Some of the tests seem to use integer division and some seem to use regular division. I have run and analyzed many of the random tests. For example a test says '7 2 + 10 /' should be 0.9. This is not integer division.