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.
Hi,
the setup of your kata is currently pretty inappropriate:
[[[8, 3]], [[0, 4]], [[18, 11]], [[1, 0]]] should equal [[[1, 0]], [[8, 3]], [[0, 4]], [[18, 11]]]
if the order doesn't matter and you keep sequenced data types in the output, you'll have to sort them on your side before doing the assertions, meaning that you'll need a dedicated test method.
Needs random tests.
Needs sample tests.
The initial solution is for a completely different problem.