Hi! This repository serves mainly for archiving my solutions for the Advent of Code puzzles.
Don't use these solution as reference since they might not be optimal as my main goal is to learn new things and tweak around with concepts I'm not that familiar with. In fact, I apologize in advance for overkilling simple problems.
2023 - 12★ / 48★
There is a repository for each AoC Edition I've participated. Inside of it there will be a subfolder for each day and depending on the amount of languages I'm trying, another folder per language. 😅
Ex.:
aoc
├── aoc-<year>
│ ├── day-<n>
│ │ ├── kotlin
│ │ │ ├── part-1
│ │ │ │ ├── input.txt
│ │ │ │ ├── solve.kt
│ │ │ │ └── test.txt
│ │ │ └── part-2
│ │ │ ├── input.txt
│ │ │ ├── solve.kt
│ │ │ └── test.txt
│ │ ├── python
│ │ │ ├── part-1
│ │ │ │ ├── input.txt
│ │ │ │ ├── solve.py
│ │ │ │ └── test.txt
│ │ │ └── part-2
│ │ │ ├── input.txt
│ │ │ ├── solve.py
│ │ │ └── test.txt
│ │ ├── ...
│ ├── day-<n+1>
│ |...
|...
Since my main goals for doing this are to learn and have fun, feel free to point out anything or ask me stuff whenever you have a question (or even just to discuss other ideas).