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.
I just fixed it. Submitted successfully... Realized I was missing something after
This comment is hidden because it contains spoiler information about the solution
seem your algorithm is slower than the time alloted for the challenge on the server
That is as a result of an infinite loop. I guess you are dividing the height by the bounce height; that will just keep increasing the height and will never taminate. So multiply it instead (h * bounce)