Ad
  • Custom User Avatar

    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, ...

  • Default User Avatar

    C Translation kumited. Author is inactive.

  • Custom User Avatar

    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.

  • Custom User Avatar

    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:

    • Return true if its 2nd root (its square root), 4th root, and 8th root are all integers.
    • Return false if not.