Ad
  • Custom User Avatar

    OP solved it, closing

  • Custom User Avatar

    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.

  • Default User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Default User Avatar

    In random cases :

    • a new HallOfFame is created with size and players arguments. eg xxx = 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)

    Does it help ?

    ; ) )