Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/alexlnkp/aoc
- Owner: alexlnkp
- License: other
- Created: 2024-12-01T21:50:14.000Z (about 1 month ago)
- Default Branch: 2024
- Last Pushed: 2024-12-09T03:47:02.000Z (27 days ago)
- Last Synced: 2024-12-09T04:25:26.426Z (27 days ago)
- Topics: advent-of-code, advent-of-code-2024, adventofcode, c
- Language: C
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
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.