day03 task 1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
mod tasks;
|
||||
|
||||
fn main() {
|
||||
tasks::day01::run();
|
||||
tasks::day03::run();
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -1 +1,2 @@
|
||||
pub mod day01;
|
||||
pub mod day03;
|
||||
|
||||
Reference in New Issue
Block a user