Apply 2024 edition formatting to solutions

This commit is contained in:
mo8it
2025-02-21 13:08:34 +01:00
parent 1eb6c1e469
commit 374c3874af
5 changed files with 9 additions and 19 deletions
+5 -3
View File
@@ -60,9 +60,11 @@ England,Spain,1,0";
fn build_scores() {
let scores = build_scores_table(RESULTS);
assert!(["England", "France", "Germany", "Italy", "Poland", "Spain"]
.into_iter()
.all(|team_name| scores.contains_key(team_name)));
assert!(
["England", "France", "Germany", "Italy", "Poland", "Spain"]
.into_iter()
.all(|team_name| scores.contains_key(team_name))
);
}
#[test]