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
scientific notation
I used division operator and tests failed for big numbers. I don't understand why
This comment is hidden because it contains spoiler information about the solution
It is so amazing to see a short solution
I thought the same thing about my solution. We know which is more readable, but which is faster?
It is after you explain that I could understand it. THX as well.
Please, do use the spoiler flag when you post comment (even here: comments about solutions are visible in the dashboard by anyone) with indications about the solution. I did flag your message.
In JavaScript, .join() is an Array method, not a String method.
To put two strings together, you would use the .concat() method, or use the "+" operator.