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.
These instructions are the problem. The rank needs to be decending order but that wasn't clear. it works for the Benjamin case since it is perfectly in the middle of the ranked names. Got it.
What don't I understand on the example test rank("Lagon,Lily", [1, 5], 2) == "Lagon")
ranks = [(54, 'Lagon'), (310, 'Lily')] 'Lily' is the second ranked name, why is 'Lagon' the desired name? No one else seems to have this problem. Any clues appreciated.