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; }