summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYudai Kawabuchi <yudaikawabuchi@gmail.com>2024-08-01 09:55:25 +0900
committerYudai Kawabuchi <yudaikawabuchi@gmail.com>2024-08-01 09:55:25 +0900
commite65ae09789410c230a863ad219b90c434adf5e4f (patch)
treef8eb9b007ab797113b1e1a7f4f82f64b59cd5c81
parentdacdce1ea245523bf7bf380f91bff76e7f867315 (diff)
fix format
-rw-r--r--solutions/11_hashmaps/hashmaps3.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/solutions/11_hashmaps/hashmaps3.rs b/solutions/11_hashmaps/hashmaps3.rs
index c075b0f..9c58b2d 100644
--- a/solutions/11_hashmaps/hashmaps3.rs
+++ b/solutions/11_hashmaps/hashmaps3.rs
@@ -28,13 +28,17 @@ fn build_scores_table(results: &str) -> HashMap<&str, TeamScores> {
let team_2_score: u8 = split_iterator.next().unwrap().parse().unwrap();
// Insert the default with zeros if a team doesn't exist yet.
- let team_1 = scores.entry(team_1_name).or_insert_with(TeamScores::default);
+ let team_1 = scores
+ .entry(team_1_name)
+ .or_insert_with(TeamScores::default);
// Update the values.
team_1.goals_scored += team_1_score;
team_1.goals_conceded += team_2_score;
// Similarely for the second team.
- let team_2 = scores.entry(team_2_name).or_insert_with(TeamScores::default);
+ let team_2 = scores
+ .entry(team_2_name)
+ .or_insert_with(TeamScores::default);
team_2.goals_scored += team_2_score;
team_2.goals_conceded += team_1_score;
}