feat: add day6

This commit is contained in:
Alessio Molinari
2025-12-07 01:39:57 +01:00
parent 3aa1e1a63d
commit 63c019f340
6 changed files with 322 additions and 0 deletions

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