From 1672165cc65d7aed530eae3c19c70a48362bea98 Mon Sep 17 00:00:00 2001 From: Luciano Quercia Date: Fri, 22 Dec 2023 20:56:08 +0100 Subject: [PATCH] 2023 day 22, lucianoq --- 2023/22/Makefile | 17 + 2023/22/assignment | 193 ++++++ 2023/22/common.go | 136 ++++ 2023/22/input | 1471 ++++++++++++++++++++++++++++++++++++++++++++ 2023/22/main1.go | 16 + 2023/22/main2.go | 42 ++ 2023/22/output1 | 1 + 2023/22/output2 | 1 + 8 files changed, 1877 insertions(+) create mode 100644 2023/22/Makefile create mode 100644 2023/22/assignment create mode 100644 2023/22/common.go create mode 100644 2023/22/input create mode 100644 2023/22/main1.go create mode 100644 2023/22/main2.go create mode 100644 2023/22/output1 create mode 100644 2023/22/output2 diff --git a/2023/22/Makefile b/2023/22/Makefile new file mode 100644 index 0000000..27dfdc0 --- /dev/null +++ b/2023/22/Makefile @@ -0,0 +1,17 @@ +main1: + go build -o main1 main1.go common.go + +main2: + go build -o main2 main2.go common.go + +.PHONY: run1 run2 clean + +run1: main1 + ./main1