aboutsummaryrefslogtreecommitdiffstats
path: root/day11
diff options
context:
space:
mode:
authorOrfeas <38209077+0xfea5@users.noreply.github.com>2023-12-11 22:16:01 +0200
committerOrfeas <38209077+0xfea5@users.noreply.github.com>2025-10-28 23:20:45 +0200
commitcd5600dfec9d59a8054cab53ff31c25be789ce9c (patch)
tree4d03e479792023e67a06cc6a7580e15a2eb744b2 /day11
parentday9 (diff)
downloadaoc23-cd5600dfec9d59a8054cab53ff31c25be789ce9c.tar.gz
aoc23-cd5600dfec9d59a8054cab53ff31c25be789ce9c.zip
day10
Diffstat (limited to 'day11')
-rw-r--r--day11/solution.zig23
1 files changed, 23 insertions, 0 deletions
diff --git a/day11/solution.zig b/day11/solution.zig
new file mode 100644
index 0000000..059a120
--- /dev/null
+++ b/day11/solution.zig
@@ -0,0 +1,23 @@
1const std = @import("std");
2const print = std.debug.print;
3const assert = std.debug.assert;
4const ArrayList = std.ArrayList;
5const HashMap = std.HashMap;
6const mem = std.mem;
7
8const fin = mem.trim(u8, @embedFile("./input.txt"), &std.ascii.whitespace);
9var gpa = std.heap.GeneralPurposeAllocator(.{}){};
10const allocator = gpa.allocator();
11
12pub fn part1() void {
13 // Part 1 goes here
14}
15
16pub fn part2() void {
17 // Part 2 goes here
18}
19
20pub fn main() !void {
21 part1();
22 part2();
23}