summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2022-12-18 23:30:44 +0000
committerMartin Ashby <martin@ashbysoft.com>2022-12-18 23:31:38 +0000
commitabbb602726f39356b3b525b7e0f2f4f06c3e9489 (patch)
tree714a8f7f683b008ff63db967c4a810aa05652dfa /src/main.rs
parentb29e650c66a3efe3cffe56ba0c41338072eac09f (diff)
downloadaoc2022-abbb602726f39356b3b525b7e0f2f4f06c3e9489.tar.gz
aoc2022-abbb602726f39356b3b525b7e0f2f4f06c3e9489.tar.bz2
aoc2022-abbb602726f39356b3b525b7e0f2f4f06c3e9489.tar.xz
aoc2022-abbb602726f39356b3b525b7e0f2f4f06c3e9489.zip
day17
Found an approach I think will work
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 34d8bad..47f41a7 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,5 +1,6 @@
#![feature(get_many_mut)]
#![feature(iterator_try_collect)]
+#![feature(int_roundings)]
use std::fs;
// mod day1;
@@ -37,5 +38,5 @@ fn main() {
// 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!"));
- day17::run(fs::read_to_string("input/day17_ex.txt").expect("Failed to read input file!"));
+ day17::run(fs::read_to_string("input/day17.txt").expect("Failed to read input file!"));
}