From cd5600dfec9d59a8054cab53ff31c25be789ce9c Mon Sep 17 00:00:00 2001 From: Orfeas <38209077+0xfea5@users.noreply.github.com> Date: Mon, 11 Dec 2023 22:16:01 +0200 Subject: day10 --- day11/solution.zig | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 day11/solution.zig (limited to 'day11/solution.zig') 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 @@ +const std = @import("std"); +const print = std.debug.print; +const assert = std.debug.assert; +const ArrayList = std.ArrayList; +const HashMap = std.HashMap; +const mem = std.mem; + +const fin = mem.trim(u8, @embedFile("./input.txt"), &std.ascii.whitespace); +var gpa = std.heap.GeneralPurposeAllocator(.{}){}; +const allocator = gpa.allocator(); + +pub fn part1() void { + // Part 1 goes here +} + +pub fn part2() void { + // Part 2 goes here +} + +pub fn main() !void { + part1(); + part2(); +} -- cgit v1.2.3