This commit is contained in:
2022-12-03 14:28:24 +01:00
parent d1d89991ab
commit f51e96b5d0
7 changed files with 404 additions and 0 deletions

7
src/bin/day03_1.rs Normal file
View File

@@ -0,0 +1,7 @@
use aoc2022::day03::process_part_1;
use std::fs;
fn main() {
let file = fs::read_to_string("./inputs/day3.txt").unwrap();
println!("{}", process_part_1(&file));
}

7
src/bin/day03_2.rs Normal file
View File

@@ -0,0 +1,7 @@
use aoc2022::day03::process_part_2;
use std::fs;
fn main() {
let file = fs::read_to_string("./inputs/day3.txt").unwrap();
println!("{}", process_part_2(&file));
}