Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
This kata has been done too many times in varying ways. It just isn't original.
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.
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.
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.
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.