day03 task 1
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
mod tasks;
|
mod tasks;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
tasks::day01::run();
|
tasks::day03::run();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
use std::fs;
|
use std::fs;
|
||||||
use std::time::Instant;
|
use std::time::Instant;
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
pub fn run() {
|
pub fn run() {
|
||||||
let content = fs::read_to_string("input/day01.txt").unwrap();
|
let content = fs::read_to_string("input/day01.txt").unwrap();
|
||||||
let start_time = Instant::now();
|
let start_time = Instant::now();
|
||||||
|
|||||||
@@ -1 +1,2 @@
|
|||||||
pub mod day01;
|
pub mod day01;
|
||||||
|
pub mod day03;
|
||||||
|
|||||||
Reference in New Issue
Block a user