Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/casensiom/advent-of-code-2024
Advent of Code 2024
https://github.com/casensiom/advent-of-code-2024
Last synced: about 1 month ago
JSON representation
Advent of Code 2024
- Host: GitHub
- URL: https://github.com/casensiom/advent-of-code-2024
- Owner: casensiom
- License: mit
- Created: 2024-12-02T21:07:46.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2024-12-03T00:57:48.000Z (about 1 month ago)
- Last Synced: 2024-12-03T01:27:47.003Z (about 1 month ago)
- Language: C++
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ⭐ advent-of-code-2024
Solutions for [Advent of Code 2024](https://adventofcode.com/2024) in C++17## 💻 Usage
### Requirements
- cmake
- C++17 compiler### Build
```
mkdir build
cd build
cmake ..
cmake --build .
```## 👷 Structure
There is a folder for each daily problem, inside each folder there are two files, the main.cpp C++ source file contains the solution, the CMakeLists.txt file configures the project.
This proyect uses the [Toolit library](https://github.com/casensiom/toolit) that is a simple toolkit with utility classes for C++.
## ⚖️ LICENSE
MIT © [Carlos Asensio Martinez](https://github.com/casensiom)