1
1
mirror of https://github.com/theoludwig/advent_of_code.git synced 2025-02-20 14:38:48 +01:00

9 lines
230 B
Rust
Raw Normal View History

2023-12-08 18:29:27 +01:00
use day_3::{part_1, part_2};
2023-12-03 23:38:44 +01:00
fn main() {
let input = include_str!("../input.txt");
println!("- Day 3: Gear Ratios -");
println!("Answer Part 1: {}", part_1(input));
2023-12-08 18:29:27 +01:00
println!("Answer Part 2: {}", part_2(input));
2023-12-03 23:38:44 +01:00
}