Advent of Code 2022 in Zig
Go to file
Tyler Hallada 818968eab9 WIP day 11
Zig orderedRemove + append is doing very strange things.
2022-12-11 01:36:05 -05:00
src WIP day 11 2022-12-11 01:36:05 -05:00
.gitignore gitignore input files 2022-12-10 17:25:50 -05:00
build.zig initialize zig exe 2022-12-01 12:46:44 -05:00
README.md Add README 2022-12-10 17:32:32 -05:00

Advent of Code 2022

This year I'm doing it in Zig!

Running

By request of AoC creator, I haven't included the input files (e.g. src/input/day01.txt). Log into the Advent of Code site and save the inputs there to the src/input/ folder.

Then to run: zig build run.

To run in super-fast prod mode: zig build -Drelease-fast run.

To run the tests against included test input files: zig build test.