Skip to content

Instantly share code, notes, and snippets.

View corbanbrook's full-sized avatar

Corban Brook corbanbrook

  • Horizon Blockchain Games
  • Toronto, Canada
  • X @corban
View GitHub Profile
def best_team(team_map)
best = nil
team_map.each {|x,team| if best == nil || team.win_loss_ratio() > best.win_loss_ratio()
best = team
end
}
best
end