feat(day1): init
This commit is contained in:
parent
4c0b4fb32d
commit
4df3715c5d
4 changed files with 94 additions and 1 deletions
16
Cargo.lock
generated
16
Cargo.lock
generated
|
@ -14,6 +14,7 @@ version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"dotenvy",
|
"dotenvy",
|
||||||
"indoc",
|
"indoc",
|
||||||
|
"itertools",
|
||||||
"ureq",
|
"ureq",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -64,6 +65,12 @@ version = "0.15.7"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
|
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "either"
|
||||||
|
version = "1.13.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "flate2"
|
name = "flate2"
|
||||||
version = "1.0.35"
|
version = "1.0.35"
|
||||||
|
@ -239,6 +246,15 @@ version = "2.0.5"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "itertools"
|
||||||
|
version = "0.13.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
||||||
|
dependencies = [
|
||||||
|
"either",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libc"
|
name = "libc"
|
||||||
version = "0.2.167"
|
version = "0.2.167"
|
||||||
|
|
|
@ -6,4 +6,5 @@ edition = "2021"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
dotenvy = "0.15.7"
|
dotenvy = "0.15.7"
|
||||||
indoc = "2.0.5"
|
indoc = "2.0.5"
|
||||||
|
itertools = "0.13.0"
|
||||||
ureq = "2.11.0"
|
ureq = "2.11.0"
|
||||||
|
|
74
src/solutions/day_01.rs
Normal file
74
src/solutions/day_01.rs
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
use itertools::Itertools;
|
||||||
|
|
||||||
|
use crate::common::{Answer, Solution};
|
||||||
|
|
||||||
|
pub struct Day01;
|
||||||
|
|
||||||
|
impl Solution for Day01 {
|
||||||
|
fn name(&self) -> &'static str {
|
||||||
|
"Historian Hysteria"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn part_a(&self, input: &str) -> Answer {
|
||||||
|
let (mut left, mut right) = input
|
||||||
|
.lines()
|
||||||
|
.map(|l| l.split_once(" ").unwrap())
|
||||||
|
.map(|(n1, n2)| (n1.parse::<i32>().unwrap(), n2.parse::<i32>().unwrap()))
|
||||||
|
.collect::<(Vec<_>, Vec<_>)>();
|
||||||
|
|
||||||
|
left.sort();
|
||||||
|
right.sort();
|
||||||
|
|
||||||
|
let sum: i32 = left
|
||||||
|
.into_iter()
|
||||||
|
.zip(right)
|
||||||
|
.map(|(a, b)| (a - b).abs())
|
||||||
|
.sum();
|
||||||
|
|
||||||
|
Answer::Number(sum as u64)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn part_b(&self, input: &str) -> Answer {
|
||||||
|
let (left, right) = input
|
||||||
|
.lines()
|
||||||
|
.map(|l| l.split_once(" ").unwrap())
|
||||||
|
.map(|(n1, n2)| (n1.parse::<i32>().unwrap(), n2.parse::<i32>().unwrap()))
|
||||||
|
.collect::<(Vec<_>, Vec<_>)>();
|
||||||
|
|
||||||
|
let counts = right.into_iter().counts();
|
||||||
|
|
||||||
|
let sum = left
|
||||||
|
.into_iter()
|
||||||
|
.map(|n| counts.get(&n).unwrap_or(&0) * (n as usize))
|
||||||
|
.sum::<usize>();
|
||||||
|
|
||||||
|
Answer::Number(sum as u64)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod test {
|
||||||
|
use super::Day01;
|
||||||
|
use crate::common::Solution;
|
||||||
|
|
||||||
|
use indoc::indoc;
|
||||||
|
|
||||||
|
const INPUT: &str = indoc! {"
|
||||||
|
3 4
|
||||||
|
4 3
|
||||||
|
2 5
|
||||||
|
1 3
|
||||||
|
3 9
|
||||||
|
3 3
|
||||||
|
"};
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn part_a() {
|
||||||
|
assert_eq!(Day01.part_a(INPUT), 11.into());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn part_b() {
|
||||||
|
assert_eq!(Day01.part_b(INPUT), 31.into());
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,3 +1,5 @@
|
||||||
use crate::common::Solution;
|
use crate::common::Solution;
|
||||||
|
|
||||||
pub const SOLUTIONS: &[&dyn Solution] = &[];
|
mod day_01;
|
||||||
|
|
||||||
|
pub const SOLUTIONS: &[&dyn Solution] = &[&day_01::Day01];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue