advent-of-code/src/year_2023/day_17_clumsy_crucible/mod.rs

26 lines
602 B
Rust

pub mod part_one;
// pub mod part_two;
pub mod common;
use crate::utils::solution::Solution;
// use crate::utils::input_reader;
pub struct DaySolution ;
impl Solution for DaySolution {
fn input_path(&self) -> &'static str {
"input/2023/day_17/input.txt"
}
fn part_one(&self) -> String {
// input_reader::read_input_file(self.input_path(), part_one::part_one)
String::from("Not implemented")
}
fn part_two(&self) -> String {
// input_reader::read_input_file(self.input_path(), part_two::part_two)
String::from("Not implemented")
}
}