aoc2024: Implement day24 solution

This is kinda weird and specific to my input but it works xD
This commit is contained in:
2024-12-25 18:13:20 +02:00
parent d035068982
commit 3607e2e759
3 changed files with 306 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
set(SOURCES
main.cpp
)
add_executable(aoc2024_day24 ${SOURCES})
banan_link_library(aoc2024_day24 ban)
banan_link_library(aoc2024_day24 libc)
install(TARGETS aoc2024_day24 OPTIONAL)