From abbb602726f39356b3b525b7e0f2f4f06c3e9489 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Sun, 18 Dec 2022 23:30:44 +0000 Subject: day17 Found an approach I think will work --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main.rs') 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!")); } -- cgit v1.2.3-ZIG