"A men's basketball league assigns every player a two-digit number for the back of his jersey. If the league uses only the digits 1-5, what is the maximum number of players that can join the league such that no player has a number with a repeated digit (e.g. 22), and no two players have the same number?"
I solved for this using an anagram of 12NNN, which yields 20 possibilities. However, I also subtracted 5 from this value, since the question states that no player can have repeated digits. Why is this wrong? Don't I have to account for 11, 22, 33, 44 and 55? THanks!