Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexlnkp/aoc

Advent of Code calendar
https://github.com/alexlnkp/aoc

advent-of-code advent-of-code-2024 adventofcode c

Last synced: 23 days ago
JSON representation

Advent of Code calendar

Awesome Lists containing this project

README

        

Advent of Code 2024

To compile:
1. run `cc -o nob nob.c`
2. run `./nob`

Structure:
- `src` folder holds each day's challenge. For day 1,
the challenge's solution is `src/1.c`

- `out` folder holds each day's compiled challenge. For day 1,
the challenge's solution executable is `out/1`

- `input` folder holds input files for some challenges. For day 1,
the input is `input/1.txt`, which holds two sets of numbers.

- `include` folder holds some helper headers. For example, `include/benchmark.h`,
a header that is used for quick and simple benchmarking of code.