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.
Hey, could you explain how this works??
1.00 and 1.0 are identical. Both represent the floating point analog of the integer 1. However, the default way to output a floating point identical to 1 is 1.0, where the .0 signifies that it is not an integer.
How about this case:
solution(0.996)
should it return '1.00' or '1.0' (the second one is how it returns right now).