Ad
  • Custom User Avatar

    My fault, you are right.
    Thank you for the great Kata!

  • Custom User Avatar

    with 259 JavaScript completions it is unlikely that there is such a glaring issue in the tests.

    maxSumDig(16409, 3) [...] maximum value for this case is 12000

    no, the maximum value below 16409 is 12001 because 1 + 2 + 0 + 0 = 3; 2 + 0 + 0 + 1 = 3

  • Custom User Avatar

    Javascript: In random tests I get maxSumDig(16409, 3) => expected [ 40, 10000, 283897 ]
    But it is wrong, maximum value for this case is 12000 and correct response should be [30, 3000, 178332]

    BTW for all random tests I have same issue.
    Thanks.