summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2022-12-16 21:26:14 +0000
committerMartin Ashby <martin@ashbysoft.com>2022-12-16 21:26:14 +0000
commit9a28d57b576b5b629027fe33e896b96b97c57370 (patch)
treea021a83cc16501a088563c1c3045fd1a85c80374 /src/main.rs
parent705d2d01eabfc4bcfd32303637813406a53b5881 (diff)
downloadaoc2022-9a28d57b576b5b629027fe33e896b96b97c57370.tar.gz
aoc2022-9a28d57b576b5b629027fe33e896b96b97c57370.tar.bz2
aoc2022-9a28d57b576b5b629027fe33e896b96b97c57370.tar.xz
aoc2022-9a28d57b576b5b629027fe33e896b96b97c57370.zip
day15 pt1
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 38ed88d..9b0ea44 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -16,6 +16,7 @@ mod day11;
mod day12;
mod day13;
mod day14;
+mod day15;
fn main() {
day1::run(fs::read_to_string("input/day1.txt").expect("Failed to read input file!"));
@@ -32,4 +33,5 @@ fn main() {
day12::run(fs::read_to_string("input/day12.txt").expect("Failed to read input file!"));
day13::run(fs::read_to_string("input/day13.txt").expect("Failed to read input file!"));
day14::run(fs::read_to_string("input/day14.txt").expect("Failed to read input file!"));
+ day15::run(fs::read_to_string("input/day15.txt").expect("Failed to read input file!"));
}