aoc2025: Implement day9 solution

This commit is contained in:
2025-12-13 03:01:13 +02:00
parent 87e595b83e
commit d2d18bea5d
3 changed files with 198 additions and 0 deletions

View File

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