aboutsummaryrefslogtreecommitdiff
path: root/2022/puzzle-8.lisp
diff options
context:
space:
mode:
Diffstat (limited to '2022/puzzle-8.lisp')
-rw-r--r--2022/puzzle-8.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/2022/puzzle-8.lisp b/2022/puzzle-8.lisp
index 54aca27..3ba8831 100644
--- a/2022/puzzle-8.lisp
+++ b/2022/puzzle-8.lisp
@@ -33,7 +33,7 @@
(col (get-column x))
(col-top (subseq col 0 y))
(col-bottom (subseq col (+ y 1))))
- (some #'id
+ (some #'identity
(mapcar (lambda (x) (every lt-tree? x))
(list row-left row-right col-top col-bottom))))))