1
0

disable day 14 part 2 because it requires manual intervention

This commit is contained in:
2024-12-14 13:30:19 +01:00
parent f273c1719c
commit cb41e4db56

View File

@@ -10,8 +10,8 @@ use itertools::Itertools;
pub fn day_main() { pub fn day_main() {
let input = read_to_string("input/day14.txt").unwrap(); let input = read_to_string("input/day14.txt").unwrap();
let input = input.trim(); let input = input.trim();
println!(" part1: {}", part1(input)); // 50112000 too low println!(" part1: {}", part1(input));
println!(" part2: {}", part2(input)); // println!(" part2: {}", part2(input));
} }
type RiddleResult = usize; type RiddleResult = usize;
@@ -67,6 +67,7 @@ fn parse(input: &str) -> Vec<((i64, i64), (i64, i64))> {
.collect_vec() .collect_vec()
} }
#[allow(unused)]
fn part2(input: &str) -> RiddleResult { fn part2(input: &str) -> RiddleResult {
let width = 101; let width = 101;
let height = 103; let height = 103;