This commit is contained in:
Georgios Samaras 2024-12-01 11:43:46 +01:00
parent 3e894700ea
commit 6da686c288
1 changed files with 19 additions and 0 deletions

19
README.md Normal file
View File

@ -0,0 +1,19 @@
# Advent of Code 2024
Advent of Code 2024 solutions in C.
## Building
```bash
$ mkdir build
$ cd build
$ cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
$ make
```
## Running
```bash
$ cd build
$ ./day-01 ../day-01/input.txt
```