This commit is contained in:
2023-12-14 03:44:14 +00:00
parent 8b61fa2011
commit 0fc0c49387
8 changed files with 253 additions and 0 deletions

10
day-13/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