With odd number of players, should you choose all players or drop one player? Difficult to remember..
Program the following logic if the number of players is odd:
If all players have played the same number of matches, choose all players (the "odd" player gets one extra match).
Otherwise, drop the player who has played the most and use the remaining even number of players.
Or, hmm, if all but one have played N matches and one has played N-1 matches, that player should be included. So, a bit smarter logic is needed.. Perhaps, for instance, check the median number of matches and if the player with least matches has less than that, then include all, otherwise drop the player with most matches played.
With odd number of players, should you choose all players or drop one player? Difficult to remember..
Program the following logic if the number of players is odd:
Or, hmm, if all but one have played N matches and one has played N-1 matches, that player should be included. So, a bit smarter logic is needed.. Perhaps, for instance, check the median number of matches and if the player with least matches has less than that, then include all, otherwise drop the player with most matches played.