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.
That is because when you use the ascii value (i.e., starting from 97+) the length of the word plays a bigger role than it should. Every extra letter would be a minimal addition of 97 instead of a minimal addition of 1. For instance, it would cause 'aaaa' (
4*97=388
) to score higher than 'zzz' (3*122=366
). Of course, when you use the actual alphabet index of the letters, 'aaaa' (4*1=4
) would score way lower than 'zzz' (3*26=78
).