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.
Tests in Golang looks not correct. They are trying to assert on random order.
condition in Kata Details
with the p(i) in increasing order and n(i) empty if n(i) is 1
Tests failing on above condition.
Example, when I attempted, I get
Expected <string>: (7)(11**2)(17)(2**2)(3**3)(5) to equal <string>: (2**2)(3**3)(5)(7)(11**2)(17)
So, based on above condition, my solution is correct, but from Test output, Expected string is in random order.