blob: 295b57e86f01a5c6bf20c916681297e0c657cb00 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
}
|