Add day1 part 1 input + day1 project setup

This commit is contained in:
2025-12-01 01:16:36 -05:00
parent 55c68d0630
commit 5f10085276
6 changed files with 4892 additions and 0 deletions

View File

@@ -27,3 +27,9 @@ file(COPY ${INPUT_DIR} DESTINATION "${CMAKE_CURRENT_BINARY_DIR}")
# Exe to make sure cmake is working
add_executable(testcmake src/testcmake/main.cpp)
### Day 1
# P1
add_executable(d1p1 src/day1/p1/main.cpp)
# P2
add_executable(d1p2 src/day1/p2/main.cpp)