Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivan-guerra/advent_of_code
Advent of Code solutions
https://github.com/ivan-guerra/advent_of_code
advent-of-code
Last synced: 17 days ago
JSON representation
Advent of Code solutions
- Host: GitHub
- URL: https://github.com/ivan-guerra/advent_of_code
- Owner: ivan-guerra
- License: mit
- Created: 2022-12-16T05:07:08.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-19T04:53:08.000Z (over 1 year ago)
- Last Synced: 2023-10-19T12:09:47.414Z (over 1 year ago)
- Topics: advent-of-code
- Language: C++
- Homepage: https://adventofcode.com
- Size: 1.18 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code
Advent of Code solutions in C++.
### Building the Solutions
To build this project you'll need CMake3.28+ and a C++ compiler supporting
C++23 features.To configure the project:
```bash
cmake --preset [release|debug]
```To build and install all solutions:
```bash
cmake --build --preset [release|debug]
```### Running the Solutions
Each solution is a standalone binary installed under `bin/`. All binaries follow
the naming convention `aoc_${YEAR}_${DAY}_${SOLN}`. All solution binaries have a
single required argument that is the `input.txt` with the puzzle input. You can
find all input text files under `inputs/`.