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.
Trying to understand the rules for sorting two numbers with the same weight was really confusing because of the wording. I think this is an improvement:
The issue isn't the number of tests, it's that they are random. You should do the same tests with the same input every time.
Non deterministic unit test are Bad(TM). Depending on the solution, the randomized tests may pass or fail from run to run. They should be changed to a cross product (testing all hands against all other hands).