AdventOfCode2022/main.rs.tmpl

39 lines
825 B
Cheetah
Raw Permalink Normal View History

2022-12-01 12:33:12 +00:00
#![allow(dead_code)]
use std::fs::File;
use std::io;
use std::io::BufRead;
use std::path::Path;
use std::time::Instant;
fn main() {
let now = Instant::now();
part_one();
let part_one_duration = now.elapsed();
part_two();
let part_two_duration = now.elapsed();
println!(
"p1: {}ms, p2: {}ms",
part_one_duration.as_millis(),
2022-12-02 12:46:29 +00:00
(part_two_duration - part_one_duration).as_millis()
2022-12-01 12:33:12 +00:00
);
}
fn read_lines<P>(filename: P) -> io::Result<io::Lines<io::BufReader<File>>>
where
P: AsRef<Path>,
{
2022-12-01 13:01:59 +00:00
// note that this discards a final newline
2022-12-01 12:33:12 +00:00
let file = File::open(filename)?;
Ok(io::BufReader::new(file).lines())
}
2022-12-01 13:03:20 +00:00
fn part_one() {
if let Ok(lines) = read_lines("./inputs/input") {
for line in lines {
// do stuff
2022-12-01 13:03:20 +00:00
}
}
}
2022-12-01 12:33:12 +00:00
fn part_two() {}