Players score points based on their rank in different colors, as shown.
The intention is to have no ties. Having ran all possible iterations, I found a few instances of ties. Rather than going with the "powers of 2" approach which results in very high values, I think I (hopefully) devised a way to create a tie breaker.
If there is a tie, players will double their highest individual score.
For instance:
Player A [2,2,3,5] and B [1,3,4,4] both have total scores of 12. But upon doubling their highest score, Player A scores 17, and B scores 16.
Is there a way to know that this is sufficient without hard analyzing each iteration?
If the provided scores for each rank within each color still allows ties after doubling the highest value, is there a better (small values preferred) set of numbers to use?
I COULD say to continue doubling your next highest score until there is a clear winner, but that isn't preferred.
