Duplicate of at least two older katas:
Instead of having random numbers in the tests, it should test all the numbers in the range 0-99, with a random order. Fixed it for javascript and python, java still needs fixing.
Description is very bad:
Which basically turns it onto a formula guessing kata.
You need to add background color to the formula svg. Black text on dark grey background is unreadable.
svg
(Also, please don't use white background if you do that. Use a lighter grey instead.)
Python: The assertions are in the wrong order. It's test.assert_equals(actual, expected), see https://www.codewars.com/docs/python-test-reference-1
test.assert_equals(actual, expected)
Loading collection data...
Duplicate of at least two older katas:
Instead of having random numbers in the tests, it should test all the numbers in the range 0-99, with a random order. Fixed it for javascript and python, java still needs fixing.
Description is very bad:
Which basically turns it onto a formula guessing kata.
You need to add background color to the formula
svg
. Black text on dark grey background is unreadable.(Also, please don't use white background if you do that. Use a lighter grey instead.)
Python: The assertions are in the wrong order. It's
test.assert_equals(actual, expected)
, see https://www.codewars.com/docs/python-test-reference-1