This commit is contained in:
2023-12-17 15:31:11 +00:00
parent 6dc1631eb3
commit 6dae7502db
8 changed files with 353 additions and 0 deletions

10
day-16/makefile Normal file
View File

@@ -0,0 +1,10 @@
TEST="test.txt"
INPUT="input.txt"
test:
cat $(TEST) | go run .
run:
cat $(INPUT) | go run .
all: test