summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2022-12-17 23:29:20 +0000
committerMartin Ashby <martin@ashbysoft.com>2022-12-17 23:29:20 +0000
commit5cd4bbc3742ae6f34a0ad17f2c68e2f0f4e95fd0 (patch)
treee52406338d1f53b651c29a998910e8dd904fb44f /src/main.rs
parent2335c9d7580ac5cf7c0169910684cb974bd4d4bd (diff)
downloadaoc2022-5cd4bbc3742ae6f34a0ad17f2c68e2f0f4e95fd0.tar.gz
aoc2022-5cd4bbc3742ae6f34a0ad17f2c68e2f0f4e95fd0.tar.bz2
aoc2022-5cd4bbc3742ae6f34a0ad17f2c68e2f0f4e95fd0.tar.xz
aoc2022-5cd4bbc3742ae6f34a0ad17f2c68e2f0f4e95fd0.zip
day17 skeleton...
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index bdbb41e..34d8bad 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -17,7 +17,8 @@ use std::fs;
// mod day13;
// mod day14;
// mod day15;
-mod day16;
+// mod day16;
+mod day17;
fn main() {
// day1::run(fs::read_to_string("input/day1.txt").expect("Failed to read input file!"));
@@ -35,5 +36,6 @@ fn main() {
// 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!"));
- day16::run(fs::read_to_string("input/day16.txt").expect("Failed to read input file!"));
+ // day16::run(fs::read_to_string("input/day16.txt").expect("Failed to read input file!"));
+ day17::run(fs::read_to_string("input/day17_ex.txt").expect("Failed to read input file!"));
}