aboutsummaryrefslogtreecommitdiff
path: root/2022/puzzle-4.lisp
diff options
context:
space:
mode:
Diffstat (limited to '2022/puzzle-4.lisp')
-rw-r--r--2022/puzzle-4.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/2022/puzzle-4.lisp b/2022/puzzle-4.lisp
index 04c7bfb..e0d4469 100644
--- a/2022/puzzle-4.lisp
+++ b/2022/puzzle-4.lisp
@@ -4,7 +4,7 @@
;; and since we're working with integers, it's simply checking if the
;; bounds are included i.e. c in [a,b] and d in [a,b]
-(defvar input (uiop:read-file-string "2022/4-input"))
+(defvar input (uiop:read-file-string "4-input"))
(defun parse-bound (str)
"Given STR=\"a-b\" return (a b)"