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.
I think tests are still wrong.
For example. From your tests:
In the kata description you say that the result of this test should be: [[2,8],[9,11]]
I think you need to decide if two contiguous time intervals must be consolidated in one or not.
Another example:
I think the result should be: [ [ -2, 11 ], [ 22, 500 ] ]
But your tests say that: Result lengths should match. [Expected 1 got 2]
expected result: [22,500]
My guess is that your solution is wrong.