You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
481 B
Rust
39 lines
481 B
Rust
|
|
use ::solver_base::solver_base::Solver;
|
|
use utils::utils;
|
|
|
|
pub struct Day1
|
|
{
|
|
|
|
}
|
|
|
|
impl Day1
|
|
{
|
|
pub fn new() -> Day1
|
|
{
|
|
Day1 { }
|
|
}
|
|
}
|
|
|
|
impl Solver for Day1
|
|
{
|
|
fn print_test()
|
|
{
|
|
println!("DAY 1 TEST PRINT");
|
|
// solver_base::print_test();
|
|
|
|
let dir = utils::get_working_dir();
|
|
let data = utils::load_data(&format!("{}/data/TESTING", dir));
|
|
println!("DATA: {}", data);
|
|
}
|
|
|
|
fn init(self: &mut Self)
|
|
{
|
|
todo!()
|
|
}
|
|
|
|
fn solve(self: &mut Self) -> String
|
|
{
|
|
todo!()
|
|
}
|
|
} |