day 10 finished

This commit is contained in:
Moritz Gmeiner 2024-12-10 15:26:12 +01:00
commit e0ceda6bb0
3 changed files with 413 additions and 2 deletions

View file

@ -16,7 +16,7 @@ pub fn main() !void {
const result = try part1(alloc, file_reader.reader());
try std.io.getStdOut().writer().print("Day 8, part 1: {}\n", .{result});
try std.io.getStdOut().writer().print("Day 9, part 1: {}\n", .{result});
}
{
@ -25,7 +25,7 @@ pub fn main() !void {
const result = try part2(alloc, file_reader.reader());
try std.io.getStdOut().writer().print("Day 8, part 2: {}\n", .{result});
try std.io.getStdOut().writer().print("Day 9, part 2: {}\n", .{result});
}
}