Use real input

This commit is contained in:
Adrian Groh 2024-12-08 22:17:09 +01:00
parent e00cb7c5ba
commit 55d112f878
Signed by: Gobidev
GPG Key ID: 3AA3153E98B0D771

View File

@ -73,7 +73,7 @@ fn part2(parsed_input: &ParsedInput) -> usize {
}
fn main() {
let input = parse(include_str!("../test_input.txt"));
let input = parse(include_str!("../input.txt"));
println!("{}", part1(&input));
println!("{}", part2(&input));
}