adventofcode2022/src/cli/commands/day021.rs

15 lines
289 B
Rust
Raw Normal View History

2022-12-07 21:07:49 +01:00
use std::path::PathBuf;
use std::fs::File;
use std::io::{BufReader,Lines};
2022-12-05 16:11:08 +01:00
use crate::util::read_lines;
fn part1(lines: Lines<BufReader<File>>) {
}
2022-12-05 16:11:08 +01:00
pub fn subcmd_day021(file: &Option<PathBuf>, alt: &bool) {
if let Ok(lines) = read_lines(file.as_ref().unwrap().as_path()) {
}
}