If a direction (left, right, up, or down) has a "T" at the end, it means you're supposed to move in that direction and then add the letter you land on to the password. If it's not there, you move but don't add to the password.
a new HallOfFame is created with size and players arguments. egxxx = new HallOfFame(3,[["ZZ",12],["xxx",9],["YyY",13]])
Then size of its length is tested (should be equal to 'size' )
then a list of players is added on after another, and each time a new player is added, the list of the tested Hall is compared to expected list
(ie list of same size but with only avaible players, sorted as required)
OP solved it, closing
If a direction (left, right, up, or down) has a "T" at the end, it means you're supposed to move in that direction and then add the letter you land on to the password. If it's not there, you move but don't add to the password.
This comment is hidden because it contains spoiler information about the solution
In random cases :
size
andplayers
arguments. egxxx = new HallOfFame(3,[["ZZ",12],["xxx",9],["YyY",13]])
Then size of its length is tested (should be equal to 'size' )
list
of the tested Hall is compared to expected list(ie list of same size but with only avaible players, sorted as required)
Does it help ?
; ) )