feat: add day7

This commit is contained in:
Alessio Molinari
2025-12-08 00:37:45 +01:00
parent 63c019f340
commit ff17ec32a6
6 changed files with 284 additions and 0 deletions

13
day7/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 && ./Day7 input_test.txt
release:
cp input.txt build
cd build && cmake .. -DCMAKE_BUILD_TYPE=Release && make && ./Day7 input.txt