Ad
  • Custom User Avatar

    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.

  • Custom User Avatar

    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.