This commit is contained in:
2022-12-06 09:11:07 +01:00
parent bdd3a1c440
commit 5e4e024fcb
7 changed files with 91 additions and 0 deletions

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

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