day03 task 1

This commit is contained in:
Johannes
2019-12-03 19:18:24 +01:00
parent 9e1a52e931
commit 1ed8bf7cbb
3 changed files with 3 additions and 1 deletions

View File

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

View File

@@ -1,6 +1,7 @@
use std::fs;
use std::time::Instant;
#[allow(dead_code)]
pub fn run() {
let content = fs::read_to_string("input/day01.txt").unwrap();
let start_time = Instant::now();

View File

@@ -1 +1,2 @@
pub mod day01;
pub mod day03;