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

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