feat: day 2

This commit is contained in:
2023-12-03 10:05:54 +01:00
parent 9ca52c19e7
commit 72e3d62ff7
6 changed files with 231 additions and 3 deletions

View File

@@ -4,3 +4,7 @@ project(advent_of_code_2023 C)
set(CMAKE_C_STANDARD 11)
add_executable(day_01 day_1.c)
add_executable(day_02 day_2.c
input_handler.c
input_handler.h)
target_link_libraries(day_02 m)