···11# iKevinY/advent
2233-My [Advent of Code](https://adventofcode.com) solutions.
33+This repository contains my solutions to [Advent of Code](https://adventofcode.com)
44+problems.
55+66+These are not intended to be the fastest possible solutions, nor are they
77+always the solution I came to while solving the problem on the night-of.
88+They are cleaned up versions of the code, made to be relatively concise.
99+1010+In addition, these solutions often rely heavily on importing `utils`, which
1111+is the `utils.py` file that can be found in each year's subdirectory. This
1212+often comes up when dealing with grids, because writing the same utility
1313+classes for operating on objects in 2D space gets very repetitive.
1414+1515+For some insight into what my solutions look like *while* I'm solving a problem,
1616+see my YouTube playlists of solves from [2022](https://www.youtube.com/playlist?list=PLrQuqV9YO5hQ-WndrHMWFlYyG8OWTnHng),
1717+[2023](https://www.youtube.com/playlist?list=PLrQuqV9YO5hSrdTtbumg5hemhq1ntjbNA),
1818+and [2024](https://www.youtube.com/playlist?list=PLrQuqV9YO5hRIR4AV5EmP-DSkRaflM9Qf).
419520621## Test Runner