This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void Main() | |
{ | |
const int weeks = 12; | |
const int bowlersPerWeek = 4; | |
var bowlers = new[] | |
{ | |
new Bowler("Bob", 5, 8), | |
new Bowler("Ben", 2), | |
new Bowler("Janna", 5), |