Here lies some of my solutions for the Advent of code challenges.
├── <YEAR>/
│ └── <CHALLENGE_NUMBER>/
│ ├── input.txt
│ └── <LANGUAGE>/
│ └── <APPROACH>/
│ └── ...solution files
└── README.md
YEAR >= 2016
CHALLENGE_NUMBER = 1...25
LANGUAGE:
- Typescript
APPROACH:
- base (normal first time solution)
- quick (quick solution to try for the ranks)
- learn (trying to solve in a language while learning)