Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/majrusz/adventofcode2022
My solutions to Advent of Code 2022 puzzles.
https://github.com/majrusz/adventofcode2022
Last synced: 3 days ago
JSON representation
My solutions to Advent of Code 2022 puzzles.
- Host: GitHub
- URL: https://github.com/majrusz/adventofcode2022
- Owner: Majrusz
- License: mit
- Created: 2023-02-25T20:48:36.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-12T10:02:43.000Z (over 1 year ago)
- Last Synced: 2024-11-01T20:41:59.627Z (about 2 months ago)
- Language: C++
- Homepage:
- Size: 81.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# What is Advent of Code?
Advent of Code is a recurring event based on solving small programming puzzles in any programming language. \
Find out more about the event here: [https://adventofcode.com/2022/about](https://adventofcode.com/2022/about)# About the Project Structure
The entire project has been divided to many subprojects to increase readability.## Days
Each day has two separate projects - one for a puzzle solution and one for unit tests (where XX is the day number):
- *DayXX*
- *DayXX_Tests*## Utility
There is also one additional project which shares common code between all puzzles. \
It is built as static library and it is included in all other projects.## All Unit Tests
The last project is just a combination of all unit tests for Utility project and all puzzle solutions. \
It has been created to ensure backward compatibility when adding/removing functions to/from **Utility** project.# Technologies
- **C++17**
- **STL**
- **CMake**
- **[Catch2](https://github.com/catchorg/Catch2)** (unit testing framework for C++)