This commit is contained in:
Anthony Cicchetti 2022-12-04 14:05:36 -05:00
parent d953f3c6ad
commit 110c43003d
4 changed files with 9 additions and 8 deletions

View file

@ -86,7 +86,7 @@ fn main() -> Result<(), Box<dyn Error>> {
Ok(()) Ok(())
} }
#[allow(unreachable_patterns)]
(_, _) => { (_, _) => {
unimplemented!() unimplemented!()
} }

View file

@ -18,7 +18,7 @@ fn all_elf_parse(inp: &str) -> IResult<&str, Vec<usize>> {
pub fn parse(inp: String) -> Vec<usize> { pub fn parse(inp: String) -> Vec<usize> {
if let Ok((_, elves)) = all_elf_parse(&inp) { if let Ok((_, elves)) = all_elf_parse(&inp) {
elves.clone() elves
} else { } else {
panic!() panic!()
} }

View file

@ -1,6 +1,4 @@
use crate::parser::{ use crate::parser::{against_hand_parser, Hand, Trick};
against_hand_parser, paper_against, rock_against, scissors_against, Hand, Trick,
};
use nom::branch::alt; use nom::branch::alt;
use nom::character::complete::{char, line_ending}; use nom::character::complete::{char, line_ending};
use nom::multi::separated_list1; use nom::multi::separated_list1;
@ -44,6 +42,7 @@ pub(crate) fn parse(inp: &str) -> Vec<usize> {
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::*; use super::*;
use crate::parser::rock_against;
#[test] #[test]
fn against_rock_parsed() { fn against_rock_parsed() {

View file

@ -1,9 +1,8 @@
use chunk_iter::ChunkIter; use chunk_iter::ChunkIter;
use common::{Day, Part}; use common::{Day, Part};
use intersection::hash_set;
use phf::phf_map; use phf::phf_map;
use std::collections::HashSet; use std::collections::HashSet;
use intersection::hash_set;
use itertools::{Itertools, kmerge};
static VALUES: phf::Map<char, usize> = phf_map! { static VALUES: phf::Map<char, usize> = phf_map! {
'a' => 1, 'a' => 1,
@ -92,7 +91,10 @@ fn part02_parse(inp: &str) -> Vec<usize> {
}) })
.map::<char, _>( .map::<char, _>(
|(first, second, third): (HashSet<char>, HashSet<char>, HashSet<char>)| { |(first, second, third): (HashSet<char>, HashSet<char>, HashSet<char>)| {
*hash_set::intersection(vec![first,second,third]).iter().next().unwrap() *hash_set::intersection(vec![first, second, third])
.iter()
.next()
.unwrap()
}, },
) )
.map(|it| dbg!(it)) .map(|it| dbg!(it))