Solve 2025 day 7

This commit is contained in:
2026-02-16 12:23:56 -05:00
parent 42e0c68d93
commit 288a0809ff
2 changed files with 66 additions and 1 deletions

View File

@@ -20,7 +20,13 @@ stressful and this will actually be more fun. Thank you Eric Wastl and let's go!
time because I always kind of avoid that. I could probably decrease the
complexity from O(n^2) to O(n log(n)) but I am happy that I've implemented
merging at all.
- Day 6:
- Day 6: Transposing some rows and cols. Fun and good to keep the brain fit
but not really hard. I would have been way too slow for the leaderboard
in pre-AI years.
- Day 7: Grid puzzle that required non-naiv implementation for part 2. Took
me a second to realize that I could not save the coordinates by list but
had to use a count to be efficient.
- Day 8:
## AoC 2024