From 110c43003dc6d3b7186c6035bfb1a5dc5483f8d0 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Sun, 4 Dec 2022 14:05:36 -0500 Subject: [PATCH] Cleanups --- cli/src/main.rs | 2 +- day_01/src/parser.rs | 2 +- day_02/src/parser/part_01.rs | 5 ++--- day_03/src/lib.rs | 8 +++++--- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index ea9c1ae..5cf324c 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -86,7 +86,7 @@ fn main() -> Result<(), Box> { Ok(()) } - + #[allow(unreachable_patterns)] (_, _) => { unimplemented!() } diff --git a/day_01/src/parser.rs b/day_01/src/parser.rs index f97e07b..f39a2b4 100644 --- a/day_01/src/parser.rs +++ b/day_01/src/parser.rs @@ -18,7 +18,7 @@ fn all_elf_parse(inp: &str) -> IResult<&str, Vec> { pub fn parse(inp: String) -> Vec { if let Ok((_, elves)) = all_elf_parse(&inp) { - elves.clone() + elves } else { panic!() } diff --git a/day_02/src/parser/part_01.rs b/day_02/src/parser/part_01.rs index a9a3386..5c40fea 100644 --- a/day_02/src/parser/part_01.rs +++ b/day_02/src/parser/part_01.rs @@ -1,6 +1,4 @@ -use crate::parser::{ - against_hand_parser, paper_against, rock_against, scissors_against, Hand, Trick, -}; +use crate::parser::{against_hand_parser, Hand, Trick}; use nom::branch::alt; use nom::character::complete::{char, line_ending}; use nom::multi::separated_list1; @@ -44,6 +42,7 @@ pub(crate) fn parse(inp: &str) -> Vec { #[cfg(test)] mod tests { use super::*; + use crate::parser::rock_against; #[test] fn against_rock_parsed() { diff --git a/day_03/src/lib.rs b/day_03/src/lib.rs index bd85638..e31b216 100644 --- a/day_03/src/lib.rs +++ b/day_03/src/lib.rs @@ -1,9 +1,8 @@ use chunk_iter::ChunkIter; use common::{Day, Part}; +use intersection::hash_set; use phf::phf_map; use std::collections::HashSet; -use intersection::hash_set; -use itertools::{Itertools, kmerge}; static VALUES: phf::Map = phf_map! { 'a' => 1, @@ -92,7 +91,10 @@ fn part02_parse(inp: &str) -> Vec { }) .map::( |(first, second, third): (HashSet, HashSet, HashSet)| { - *hash_set::intersection(vec![first,second,third]).iter().next().unwrap() + *hash_set::intersection(vec![first, second, third]) + .iter() + .next() + .unwrap() }, ) .map(|it| dbg!(it))