The class for a Race which is a match that includes more than 2 competitors
const race = new Race([[player1], [player2, player3], [player4]])
An ordered array of the race results with the winner in index 0, for all the players who tied on result they go into the same array
Array of the matches and outcomes based on the race results
Turns an array of race results to an array of matches and outcomes
An ordered array of the race results with the winner in index 0
An array of matches and outcomes based on the race results. [Player, Player, matchResult][]
An array of the matches within the race in the format [Player, Player, placement][]
The class for a Race which is a match that includes more than 2 competitors