public static double[] RemoveHomeAdvantage(this BasketballTeam team, double[] stat)
 {
     return(stat.Multiply(team.HomeGames().Divide(team.HomeAdvantage(stat)).Add(team.AwayGames())));
 }