Skip to content

Commit 754fef2

Browse files
F1 data update - G.P. Italy 2021
1 parent 1b7e0db commit 754fef2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

1_CS/LINQ/DataLib/Formula1.cs

+6-6
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ public static class Formula1
3636
new("Jacques", "Villeneuve", "Canada", 165, 11, new int[] { 1997 }, new string[] { "Williams" }),
3737
new("Mika", "Hakkinen", "Finland", 160, 20, new int[] { 1998, 1999 }, new string[] { "McLaren" }),
3838
new("Michael", "Schumacher", "Germany", 287, 91, new int[] { 1994, 1995, 2000, 2001, 2002, 2003, 2004 }, new string[] { "Benetton", "Ferrari" }),
39-
new("Fernando", "Alonso", "Spain", 327, 32, new int[] { 2005, 2006 }, new string[] { "Renault" }),
39+
new("Fernando", "Alonso", "Spain", 328, 32, new int[] { 2005, 2006 }, new string[] { "Renault" }),
4040
new("Kimi", "Räikkönen", "Finland", 344, 21 , new int[] { 2007 }, new string[] { "Ferrari" }),
4141
new("Jenson", "Button", "UK", 306, 16, new int[] { 2009 }, new string[] { "Brawn GP" }),
42-
new("Sebastian", "Vettel", "Germany", 271, 53, new int[] { 2010, 2011, 2012, 2013 }, new string[] { "Red Bull Racing" }),
42+
new("Sebastian", "Vettel", "Germany", 272, 53, new int[] { 2010, 2011, 2012, 2013 }, new string[] { "Red Bull Racing" }),
4343
new("Nico", "Rosberg", "Germany", 207, 24, new int[] { 2016 }, new string[] { "Mercedes" }),
44-
new("Lewis", "Hamilton", "UK", 279, 99, new int[] { 2008, 2014, 2015, 2017, 2018, 2019, 2020 }, new string[] { "McLaren", "Mercedes" }),
44+
new("Lewis", "Hamilton", "UK", 280, 99, new int[] { 2008, 2014, 2015, 2017, 2018, 2019, 2020 }, new string[] { "McLaren", "Mercedes" }),
4545
};
4646

4747
private static List<Team>? s_teams;
@@ -175,9 +175,9 @@ public static class Formula1
175175
new Racer("Juan Pablo", "Montoya", "Columbia", Starts: 94, Wins: 7),
176176
new Racer("Felipe", "Massa", "Brazil", Starts: 269, Wins: 11),
177177
new Racer("Mark", "Webber", "Australia", Starts: 215, Wins: 9),
178-
new Racer("Daniel", "Ricciardo", "Australia", Starts: 201, Wins: 7),
179-
new Racer("Valtteri", "Bottas", "Finland", Starts: 169, Wins: 9),
180-
new Racer("Max", "Verstappen", "Netherlands", Starts: 132, Wins: 17)
178+
new Racer("Daniel", "Ricciardo", "Australia", Starts: 202, Wins: 8),
179+
new Racer("Valtteri", "Bottas", "Finland", Starts: 170, Wins: 9),
180+
new Racer("Max", "Verstappen", "Netherlands", Starts: 133, Wins: 17)
181181
};
182182
}
183183
}

0 commit comments

Comments
 (0)