advent-of-code-2024/src/days/d12.rs

17 lines
313 B
Rust
Raw Normal View History

2024-12-08 17:59:22 +01:00
use std::fs;
pub fn solve() {
let path = "res/12/input";
#[allow(unused)]
let contents = fs::read_to_string(path).expect("Something went wrong reading the file");
let result: usize = 0;
println!("Result 1: {}", result);
let result: usize = 0;
println!("Result 2: {}", result);
}