advent-of-code-2024/src/day12.zig

19 lines
412 B
Zig
Raw Normal View History

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