mirror of
https://github.com/anthonyoteri/advent-of-code-2023.git
synced 2026-06-05 19:56:53 -04:00
Fix clippy issues on all days
Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
This commit is contained in:
+1
-1
@@ -47,7 +47,7 @@ fn parse_input(input: &str) -> Vec<Game> {
|
||||
for line in input.lines() {
|
||||
let mut bags = Vec::new();
|
||||
|
||||
let (game_part, bags_part) = line.split_once(":").unwrap();
|
||||
let (game_part, bags_part) = line.split_once(':').unwrap();
|
||||
|
||||
let game_id = game_part
|
||||
.strip_prefix("Game ")
|
||||
|
||||
Reference in New Issue
Block a user