feat: add day4

This commit is contained in:
Alessio Molinari
2025-12-04 21:19:59 +01:00
parent 9ea5aa4d47
commit f26bb3b1bc
6 changed files with 266 additions and 0 deletions

13
day4/Makefile Normal file
View File

@@ -0,0 +1,13 @@
clear:
rm -rf build/*
run:
cp input.txt build
cp input_test.txt build
cd build && cmake .. && make && ./Day4 input_test.txt
release:
cp input.txt build
cd build && cmake .. -DCMAKE_BUILD_TYPE=Release && make && ./Day4 input.txt