aoc2024: Implement day8 solution

I did not feel like optimizing this one, so its a O(n^2) looking over
every cell in the grid. Performs way faster than my optimized day6
solution tho :DD
This commit is contained in:
2024-12-08 16:14:39 +02:00
parent cf9ba737f0
commit c4e76b391e
3 changed files with 176 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ set(AOC2024_PROJECTS
day5
day6
day7
day8
full
)