Ad
  • Custom User Avatar

    Python example tests are not fixed: it's still using Test and Find_ways.

  • Default User Avatar

    I'm getting slight errors on the larger test cases for Java. I passed all the tests using the same approach with python, so either I'm missing some quirk in using longs or some of the Java test cases are off.

  • Custom User Avatar

    According to the tests Find_ways(27, 0) should return 1 but is there really a way that zero numbers can be summed to 27?
    In the description you talk about A and B. In the initial solution you use m and n.
    Please use snake_case for function names in Python, i.e. find_ways instead of Find_ways. See Kata Best Practices.
    Please add randomized tests. See the Python Test Suite Best Practises.

  • Custom User Avatar

    hi,

    • python function name should use snake_case, not camelCase
    • sample tests cannot run in their current state (squared brackets instead of parentheses)
    • description is incomplete: basically, the answer to each test, with the current description is infinity: 5 = -5+5+5 = -1000+1000+5 = ...
    • that leads to...: what about 0? Is 0,2,3 acceptable or not? (seems to be considering the case (5,3), but that should be present in the description)