Ad
  • Default User Avatar

    This kata has been done too many times in varying ways. It just isn't original.

  • Default User Avatar

    when you say if(other == 0) continue it just skips that number and moves onto the next number so if all the other numbers are divisible it would return true when actually because one of the numbers was 0 it should return false since division by zero is not allowed. You may have already figured this out by now since this is 7 months later but try changing the continue to a return false and it should work.

  • Default User Avatar

    That example that you just responded with does not appear anywhere in the Java translation the only example is "riley" "Hello Riley!" so no there are no explicit example problems that show that you might get an argument in all caps that you would have to change to lower case.

  • Default User Avatar

    If you are failing the BILLY test - it is because the kata expects the result to have the first letter capitalized and all other letters lower case - the BILLY test gives an argument that is all uppercase so you are expected to leave the B capitalized and then make the rest lowercase. The error messages are backward, it says it expects "BILLY" and you gave it "Billy" but it actually the opposite, your response is giving "BILLY" and it expects "Billy" - While this kata is very simple, the instructions are not clear.

  • Default User Avatar

    I am passing all of the tests in Java but yet it continues to tell me that it has timed out. It says Passed 7 Failed 0 but yet it won't let me pass because it says that it took longer than 12000 ms to complete. Please fix.