day 24 task 1

This commit is contained in:
Johannes
2019-12-26 13:17:20 +01:00
parent a5019f1afb
commit ece3b0ee29
3 changed files with 3 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
mod tasks;
fn main() {
tasks::day17::run();
tasks::day24::run();
}

View File

@@ -1,5 +1,6 @@
use super::day05::*;
#[allow(dead_code)]
pub fn run() {
let input: RAM = std::fs::read_to_string("input/day17.txt")
.unwrap()

View File

@@ -16,3 +16,4 @@ pub mod day16;
pub mod day17;
pub mod day18;
pub mod day21;
pub mod day24;