diff options
| author | Orfeas <38209077+0xfea5@users.noreply.github.com> | 2023-12-16 01:01:17 +0200 |
|---|---|---|
| committer | Orfeas <38209077+0xfea5@users.noreply.github.com> | 2025-10-28 23:20:45 +0200 |
| commit | 799b53427777c8a1a2cc25ce96249a461bd83563 (patch) | |
| tree | 13b2c3f4656ce4ae5146920c27ee5719bcedb71f /day08 | |
| parent | day12 revamped (diff) | |
| download | aoc23-799b53427777c8a1a2cc25ce96249a461bd83563.tar.gz aoc23-799b53427777c8a1a2cc25ce96249a461bd83563.zip | |
day15
Diffstat (limited to 'day08')
| -rw-r--r-- | day08/solution.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/day08/solution.zig b/day08/solution.zig index ae2a392..c068244 100644 --- a/day08/solution.zig +++ b/day08/solution.zig | |||
| @@ -106,7 +106,7 @@ pub fn main() !void { | |||
| 106 | var splitLines = mem.splitScalar(u8, fin, '\n'); | 106 | var splitLines = mem.splitScalar(u8, fin, '\n'); |
| 107 | var rules = RuleMap.init(allocator); | 107 | var rules = RuleMap.init(allocator); |
| 108 | 108 | ||
| 109 | var instructions = splitLines.next().?; | 109 | const instructions = splitLines.next().?; |
| 110 | _ = splitLines.next(); | 110 | _ = splitLines.next(); |
| 111 | 111 | ||
| 112 | while (splitLines.next()) |line| { | 112 | while (splitLines.next()) |line| { |
