diff options
Diffstat (limited to 'aoc24/src/dayX.zig')
-rw-r--r-- | aoc24/src/dayX.zig | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/aoc24/src/dayX.zig b/aoc24/src/dayX.zig new file mode 100644 index 0000000..295b57e --- /dev/null +++ b/aoc24/src/dayX.zig @@ -0,0 +1,21 @@ +const std = @import("std"); + +const Input = struct {}; + +pub fn parse(allocator: std.mem.Allocator, data: []const u8) !Input { + _ = allocator; + _ = data; + return .{}; +} + +pub fn part1(allocator: std.mem.Allocator, input: Input) !u32 { + _ = allocator; + _ = input; + return 0; +} + +pub fn part2(allocator: std.mem.Allocator, input: Input) !u32 { + _ = allocator; + _ = input; + return 0; +} |