2023-12-02 16:02:20 +00:00
|
|
|
# Advent of Code 2023
|
|
|
|
|
|
|
|
Not really going for points here, just for fun :).
|
|
|
|
|
|
|
|
I'll probably try to vary languages a bit to get some variety.
|
|
|
|
|
2023-12-05 01:38:49 +00:00
|
|
|
## Notes
|
|
|
|
|
|
|
|
- I try not to use regex if I can help it (regex kinda takes the fun out of it and is harder to optimise if you are actually going for performance).
|
|
|
|
- Solutions are tidied up _a bit_, but not a lot. So this is definitely nowhere close being elegant code in a lot of cases.
|
|
|
|
|
|
|
|
## Solutions
|
|
|
|
|
2023-12-02 16:02:20 +00:00
|
|
|
### [Day 1](day1/)
|
|
|
|
**Language**: Python 3.12 (generics used)
|
|
|
|
|
|
|
|
### [Day 2](day2/)
|
2023-12-05 01:38:49 +00:00
|
|
|
**Language**: Python 3
|
|
|
|
|
|
|
|
### [Day 3](day3/)
|
|
|
|
**Language**: TypeScript (Deno)
|
2023-12-05 01:39:56 +00:00
|
|
|
|
2023-12-05 01:38:49 +00:00
|
|
|
**Note**: This one was re-written because what I initially wrote belongs on [r/programminghorror](https://www.reddit.com/r/programminghorror/).
|
|
|
|
|
|
|
|
### [Day 4](day4/)
|
|
|
|
**Language**: Golang
|