My Advent of Code solutions in Python. kevinyap.ca/2019/12/going-fast-in-advent-of-code/
advent-of-code python
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update README

+16 -1
+16 -1
README.md
··· 1 1 # iKevinY/advent 2 2 3 - My [Advent of Code](https://adventofcode.com) solutions. 3 + This repository contains my solutions to [Advent of Code](https://adventofcode.com) 4 + problems. 5 + 6 + These are not intended to be the fastest possible solutions, nor are they 7 + always the solution I came to while solving the problem on the night-of. 8 + They are cleaned up versions of the code, made to be relatively concise. 9 + 10 + In addition, these solutions often rely heavily on importing `utils`, which 11 + is the `utils.py` file that can be found in each year's subdirectory. This 12 + often comes up when dealing with grids, because writing the same utility 13 + classes for operating on objects in 2D space gets very repetitive. 14 + 15 + For some insight into what my solutions look like *while* I'm solving a problem, 16 + see my YouTube playlists of solves from [2022](https://www.youtube.com/playlist?list=PLrQuqV9YO5hQ-WndrHMWFlYyG8OWTnHng), 17 + [2023](https://www.youtube.com/playlist?list=PLrQuqV9YO5hSrdTtbumg5hemhq1ntjbNA), 18 + and [2024](https://www.youtube.com/playlist?list=PLrQuqV9YO5hRIR4AV5EmP-DSkRaflM9Qf). 4 19 5 20 6 21 ## Test Runner