Skip to content

Commit cc5e895

Browse files
G.P. Abu Dhabi 2021
1 parent 2dae5a4 commit cc5e895

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

1_CS/LINQ/DataLib/Formula1.cs

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ public static class Formula1
3737
new("Fernando", "Alonso", "Spain", 336, 32, new int[] { 2005, 2006 }, new string[] { "Renault" }),
3838
new("Kimi", "Räikkönen", "Finland", 352, 21, new int[] { 2007 }, new string[] { "Ferrari" }),
3939
new("Jenson", "Button", "UK", 306, 16, new int[] { 2009 }, new string[] { "Brawn GP" }),
40-
new("Sebastian", "Vettel", "Germany", 279, 53, new int[] { 2010, 2011, 2012, 2013 }, new string[] { "Red Bull Racing" }),
40+
new("Sebastian", "Vettel", "Germany", 280, 53, new int[] { 2010, 2011, 2012, 2013 }, new string[] { "Red Bull Racing" }),
4141
new("Nico", "Rosberg", "Germany", 207, 24, new int[] { 2016 }, new string[] { "Mercedes" }),
42-
new("Lewis", "Hamilton", "UK", 287, 103, new int[] { 2008, 2014, 2015, 2017, 2018, 2019, 2020 }, new string[] { "McLaren", "Mercedes" }),
42+
new("Lewis", "Hamilton", "UK", 288, 103, new int[] { 2008, 2014, 2015, 2017, 2018, 2019, 2020 }, new string[] { "McLaren", "Mercedes" }),
43+
new("Max", "Verstappen", "Netherlands", 141, 20, new int[] { 2021 }, new string[] { "Red Bull Racing" })
4344
};
4445

4546
private static List<Team>? s_teams;
@@ -59,7 +60,7 @@ public static class Formula1
5960
new("Ferrari", 1961, 1964, 1975, 1976, 1977, 1979, 1982, 1983, 1999, 2000, 2001, 2002, 2003, 2004, 2007, 2008),
6061
new("Brawn GP", 2009),
6162
new("Red Bull Racing", 2010, 2011, 2012, 2013),
62-
new("Mercedes", 2014, 2015, 2016, 2017, 2018, 2019, 2020)
63+
new("Mercedes", 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021)
6364
};
6465

6566
private static List<Championship>? s_championships;
@@ -135,7 +136,8 @@ public static class Formula1
135136
new(2017, "Lewis Hamilton", "Sebastian Vettel", "Valtteri Bottas"),
136137
new(2018, "Lewis Hamilton", "Sebastian Vettel", "Kimi Räikkönen"),
137138
new(2019, "Lewis Hamilton", "Valtteri Bottas", "Max Verstappen"),
138-
new(2020, "Lewis Hamilton", "Valtteri Bottas", "Max Verstappen")
139+
new(2020, "Lewis Hamilton", "Valtteri Bottas", "Max Verstappen"),
140+
new(2021, "Max Verstappen", "Lewis Hamilton", "Valtteri Bottas")
139141
};
140142

141143
private static List<Racer>? _moreRacers;
@@ -172,8 +174,7 @@ public static class Formula1
172174
new Racer("Juan Pablo", "Montoya", "Columbia", Starts: 94, Wins: 7),
173175
new Racer("Felipe", "Massa", "Brazil", Starts: 269, Wins: 11),
174176
new Racer("Mark", "Webber", "Australia", Starts: 215, Wins: 9),
175-
new Racer("Daniel", "Ricciardo", "Australia", Starts: 209, Wins: 8),
176-
new Racer("Valtteri", "Bottas", "Finland", Starts: 177, Wins: 10),
177-
new Racer("Max", "Verstappen", "Netherlands", Starts: 140, Wins: 19)
177+
new Racer("Daniel", "Ricciardo", "Australia", Starts: 210, Wins: 8),
178+
new Racer("Valtteri", "Bottas", "Finland", Starts: 178, Wins: 10)
178179
};
179180
}

0 commit comments

Comments
 (0)