refactor projekt to implement and test other cli libs
This commit is contained in:
parent
f091f19a55
commit
8b16296d5e
34 changed files with 35 additions and 15 deletions
14
aoc/src/year2022/day013.rs
Normal file
14
aoc/src/year2022/day013.rs
Normal file
|
@ -0,0 +1,14 @@
|
|||
use std::path::PathBuf;
|
||||
use std::fs::File;
|
||||
use std::io::{BufReader,Lines};
|
||||
use crate::util::read_lines;
|
||||
|
||||
fn part1(lines: Lines<BufReader<File>>) {
|
||||
|
||||
}
|
||||
|
||||
pub fn subcmd_day013(file: &Option<PathBuf>, alt: &bool) {
|
||||
if let Ok(lines) = read_lines(file.as_ref().unwrap().as_path()) {
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue