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.
Python tests are wrong? (maybe other languages too) My solution doesn't check for 8th root and still passes...
At least add a few "edge cases" like
16, 81, ...
C Translation kumited. Author is inactive.
Is there a problem in this kata? some test are wrong even though i think it is right, I'm new in programming so i don't know if i'm what i'm doing is right.
The kata itself is decent (though random tests would be welcome). But the description seems overly complicated to me. The following is simpler and much easier to understand.
You will be given an integer
n
that is greater than 1:true
if its 2nd root (its square root), 4th root, and 8th root are all integers.false
if not.