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.
The expected value for that test is this one:
1:ooo/1:uuu/2:sss/=:nnn/1:ii/2:aa/2:dd/2:ee/=:gg"
Seems like this kata has issues in test in js part
The description says:
I assume they must be ordered based on full substring (like i need to compare
1:uuu
with2:sss
for example), but in that case2:sss/1:uuu
part of the test assertion breaks the rule.Same problem if the substrings must be sorted based on corresponding character (like
u
ands
) - then the1:ii/2:aa
part breaks the rule.There are three possible reasons - description is incorrect, tests are incorrect, or i'm really dumb
If you guys know how exactly it should be sorted, please tell me...