This commit is contained in:
2023-12-15 17:19:33 +00:00
parent e29029c688
commit 8655265908
8 changed files with 200 additions and 0 deletions

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