2024-12-05 20:22:19 +00:00
|
|
|
# Advent of Code 2024
|
|
|
|
|
|
|
|
Prerequisites:
|
|
|
|
|
|
|
|
* Linux (WSL may work)
|
|
|
|
* x86_64 CPU
|
|
|
|
* gcc
|
|
|
|
* make
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
Run `make` to build everything.
|
|
|
|
|
|
|
|
## Running
|
|
|
|
|
|
|
|
Every program accepts the input through `stdin` and outputs through `stdout`.
|
2024-12-05 21:01:27 +00:00
|
|
|
|
|
|
|
If you place puzzle inputs in files at `in/01.txt`, `in/02.txt`, etc., then you
|
|
|
|
can use make to compile and compute the answer by running `make out/01.txt`,
|
|
|
|
`make out/02.txt`, etc.
|