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.
(JS) The function should return the test's maximum possible score as an integer. However we're in may cases given non integer values and tests expect float number.
There is a problem with the tests for Ruby translation. The first argument's inputs look like: {"a": 1, "b": 14}. This is valid syntax for a javascript object, but not valid syntax for a ruby hash, which looks more like {"a"=> 1, "b"=> 14} or {a: 1, b: 14}.