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.
Seems like a floating-point error. The tests should probably be changed to allow for precision errors (e.g. using
assert.approximately
instead ofassert.strictEqual
).This comment is hidden because it contains spoiler information about the solution
JS
Fixed the tests to check for approximate equality instead.
Your solution now works consistently.
This comment is hidden because it contains spoiler information about the solution