advent-of-code-2023/src/day25.zig

19 lines
412 B
Zig
Raw Normal View History

2020-11-26 22:46:03 +01:00
const std = @import("std");
const Allocator = std.mem.Allocator;
const assert = std.debug.assert;
const print = std.debug.print;
2021-11-24 06:16:05 +01:00
const List = std.ArrayList;
const Map = std.AutoHashMap;
const StrMap = std.StringHashMap;
2021-11-24 05:56:51 +01:00
const BitSet = std.DynamicBitSet;
2021-11-24 06:16:05 +01:00
const Str = []const u8;
2020-11-26 22:46:03 +01:00
2021-11-24 06:08:22 +01:00
const util = @import("util.zig");
const gpa = util.gpa;
2021-11-24 05:56:51 +01:00
const data = @embedFile("../data/day25.txt");
2020-11-26 22:46:03 +01:00
2021-11-24 05:56:51 +01:00
pub fn main() !void {
2020-11-26 22:46:03 +01:00
}