mirror of
https://github.com/theoludwig/advent_of_code.git
synced 2025-05-18 19:27:51 +02:00
9 lines
250 B
Rust
9 lines
250 B
Rust
use day_5::{part_1, part_2};
|
|
|
|
fn main() {
|
|
let input = include_str!("../input.txt");
|
|
println!("- Day 5: If You Give A Seed A Fertilizer -");
|
|
println!("Answer Part 1: {}", part_1(input));
|
|
println!("Answer Part 2: {}", part_2(input));
|
|
}
|