https://github.com/2008choco/adventofcode
My code solutions for Advent of Code. SPOILERS, OBVIOUSLY!
https://github.com/2008choco/adventofcode
advent-of-code-2023 advent-of-code-cpp
Last synced: 8 months ago
JSON representation
My code solutions for Advent of Code. SPOILERS, OBVIOUSLY!
- Host: GitHub
- URL: https://github.com/2008choco/adventofcode
- Owner: 2008Choco
- License: mit
- Created: 2023-12-02T03:30:34.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-05T03:44:40.000Z (almost 2 years ago)
- Last Synced: 2025-03-19T13:14:13.115Z (9 months ago)
- Topics: advent-of-code-2023, advent-of-code-cpp
- Language: C++
- Homepage:
- Size: 66.4 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
This is a mega-repository containing my personal solutions to the annual [Advent of Code](https://adventofcode.com) challenge, written in C++17. The code written for these challenges is not meant to be optimal C++ code. It is probably not efficient, probably not the shortest solution, probably not the cleanest solution, and probably written differently from how you would have solved this issue, and that's okay! I'm doing my best to learn as much as I can and I don't reasonably expect anybody to use this code in any sort of production environment. If you're here, you've probably either stumbled upon it randomly or were sent it and was curious how I solved one of the challenges.
# Project Structure
At the root of this repository you'll find directories for each year of Advent of Code that I've completed. Within those directories will be individual projects for each day located under `DayX` (where `X` is the numerical day). The root of this project contains a VisualStudio solution which should open the appropriate projects and configure them accordingly. Additionally, there is a `AdventOfCodeLibrary` project, a static library, in the root which contains common functions used between each day.