aoc2024: Implement day9 solution

part2 is kinda unoptimized, it should not use expanded input, but I did
not feel like rewriting my parsing code :)
This commit is contained in:
2024-12-09 16:20:21 +02:00
parent 90820f24a4
commit 8b612ba547
3 changed files with 163 additions and 0 deletions

View File

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