Signed-off-by: TuDatTr <tuan-dat.tran@tudattr.dev>
This commit is contained in:
TuDatTr
2023-10-09 01:45:03 +02:00
parent 7510bc2f59
commit 4e36ed6462
44 changed files with 1137 additions and 3 deletions

17
2022/day-1/src/bin.rs Normal file
View File

@@ -0,0 +1,17 @@
use common::cli::Cli;
use calorie_counting_lib::{task_1a, task_1b};
use clap::Parser;
use tracing::{info, debug};
pub fn main() {
tracing_subscriber::fmt::init();
debug!("Running with DEBUG logging");
info!("Running with INFO logging");
let args = Cli::parse();
debug!("{:#?}", args);
task_1a(&args.input);
task_1b(&args.input);
}

30
2022/day-1/src/elf.rs Normal file
View File

@@ -0,0 +1,30 @@
use std::fmt;
#[derive(Debug, Clone)]
pub struct Elf {
_input: String,
calories: Vec<u64>,
}
impl Elf {
pub fn new(input: &str) -> Self {
let cal: Vec<u64> = input
.split('\n')
.map(|i| i.parse::<u64>().unwrap())
.collect();
Self {
_input: input.to_string(),
calories: cal,
}
}
pub fn total_calories(self) -> u64 {
self.calories.iter().sum()
}
}
impl fmt::Display for Elf {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Elf: {:?}", self.calories)
}
}

68
2022/day-1/src/lib.rs Normal file
View File

@@ -0,0 +1,68 @@
use std::path::PathBuf;
use std::collections::BinaryHeap;
use tracing::{debug, info};
use common::read_file;
mod elf;
use crate::elf::Elf;
/// Finds the Elf carrying the most Calories.
/// Outputs how many total Calories that Elf is carrying.
pub fn task_1a(input: &PathBuf) {
debug!("Running task 1a");
info!("Running task 1a with {:?}", input);
let content = read_file(input).unwrap();
let splits = content.split("\n\n");
println!("Result (1a): {}", splits.map(|s| Elf::new(s).total_calories()).max().unwrap());
}
/// Finds the top three Elves carrying the most Calories.
/// Outputs how many Calories those Elves are carrying in total.
pub fn task_1b(input: &PathBuf) {
debug!("Running task 1b");
info!("Running task 1b with {:?}", input);
let content = read_file(input).unwrap();
let splits = content.split("\n\n");
let mut heap = splits.map(|s| Elf::new(s).total_calories()).collect::<BinaryHeap<_>>();
let mut sum = 0u64;
for _ in 0..3 {
if let Some(c) = heap.pop() {
sum += c;
}
}
println!("Result (1b): {}", sum);
}
#[cfg(test)]
mod tests {
use super::*;
use std::fs::remove_file;
use std::str::from_utf8;
use common::{create_file, read_file};
const PATH: &str = "input.txt";
const CONTENT: &[u8; 54] =
b"1000\n2000\n3000\n\n4000\n\n5000\n6000\n\n7000\n8000\n9000\n\n10000";
fn create_test_setup() {
let file_path = &PathBuf::from(PATH);
let original = CONTENT;
create_file(file_path, from_utf8(original).unwrap().to_string());
}
fn cleanup_test_setup() {
let _ = remove_file(&PathBuf::from(PATH));
}
/// Test if we corretly read file input.
#[test]
fn file_io() {
create_test_setup();
let content = read_file(&PathBuf::from(PATH));
cleanup_test_setup();
assert_eq!(from_utf8(CONTENT).unwrap(), content.unwrap());
}
}