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.
The behavior of round () for floats can be surprising : for example , round ( 2.675 , 2 ) gives 2.67 instead of the expected 2.68 . This is not a bug : it ' sa result of the fact that most decimal fractions can ' t be represented exactly as a float . See Floating Point Arithmetic : Issues and Limitations for more information .
Well, round() can round the number down, e.g. round(1231.232) = 1231, however, ceil() returns always bigger number: ceil(1231.232) = 1232.
This comment is hidden because it contains spoiler information about the solution