1
1
mirror of https://github.com/theoludwig/advent_of_code.git synced 2025-05-18 19:27:51 +02:00

feat: add day 5

This commit is contained in:
2023-12-09 20:22:46 +01:00
parent 755e211f3f
commit 45eca9020d
9 changed files with 912 additions and 4 deletions

8
day_5/src/main.rs Normal file
View File

@ -0,0 +1,8 @@
use day_5::{part_1, part_2};
fn main() {
let input = include_str!("../input.txt");
println!("- Day 5: If You Give A Seed A Fertilizer -");
println!("Answer Part 1: {}", part_1(input));
println!("Answer Part 2: {}", part_2(input));
}