Skip to content

Commit 819dc0f

Browse files
committed
tiny fixes day 12 2022
1 parent 63af1da commit 819dc0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/2022/12.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub fn run(input: aoc.Input) !aoc.Output {
2323
}
2424

2525
const MapWidth = 161 + 2;
26-
const MapHeight = 61 + 1;
26+
const MapHeight = 41 + 2;
2727
const MapType = @TypeOf(aoc.field(MapWidth, MapHeight, @as(u8, 0)));
2828

2929
inline fn breadth_first_search(map: *const MapType, start: Point, end: Point) !aoc.Output {

0 commit comments

Comments
 (0)