20 lines
296 B
Rust
Raw Normal View History

2024-12-01 12:19:49 -05:00
use tabled::{Table, Tabled};
pub mod day1;
#[derive(Tabled)]
pub struct Solution {
day: u64,
answer: String,
}
fn main() {
let mut rows = Vec::new();
let day1_p1 = day1::run_day_1_part_1();
rows.push(day1_p1);
let table = Table::new(rows);
print!("{}", table);
}