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 comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
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?