Ad
  • Custom User Avatar

    Not a kata issue. Closing.

  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    If you posted your code with a spoiler tag, someone might be able to take a look, but this definitely sounds like an issue with your code not the kata (I'm not sure what language you're in, but I just finished the kata in every language without issue).

  • Custom User Avatar

    Hey! So, all my 'Run Tests' tests are passing, and all tests pass when I try all n = (0..1 billion) on Atom, but when I click submit it times out (Process took 6000ms...)! I've found the problem to be a tiny ternary operator (n > 3 ? invisible : 0) is causing everything to screw up. If I remove it, the only tests that don't pass are the first two. It doesn't clear up if I change the ternary operator to an if statement either. Any suggestions?