My java solutions to the https://adventofcode.com/ advent calendar for 2022.
Each day is in its own package.
All days (except day01) follow the standard solver template:
- readInput()
- - read and parse all input from the console. Typically the input is parsed using an inner class, and a list of the input classes is used in the subsequent solve() parts
- solvePart1()
- - solve the first part of the day's puzzle
- solvePart2()
- - solve the second part of the day's puzzle