1
0

restructured for more days

This commit is contained in:
2024-12-01 17:59:27 +01:00
parent 5759924ba8
commit 8884e46983
4 changed files with 92 additions and 62 deletions

17
src/day02.rs Normal file
View File

@@ -0,0 +1,17 @@
use std::fs::read_to_string;
pub fn day_main() {
let input = read_to_string("input/day01.txt").unwrap();
println!("part1: {}", part1(&input));
// println!("part2: {}", part2(&input));
}
type Int = i32;
fn part1(input: &str) -> Int {
0
}
// fn part2(input: &str) -> Int {
// 0
// }