commit 8fe799d387f48f5cd8c6e29b7b616148d32de0e0
parent 217ae949bc195ceb4cc9e708d58407e0f7dee1eb
Author: Lukas Henkel <lh@entf.net>
Date: Wed, 14 Dec 2022 07:26:23 +0100
Another useless use of lambda
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/day13.lisp b/src/day13.lisp
@@ -45,7 +45,7 @@
(apply #'*
(loop for packet in (-> (remove-if #'null inputs)
(append (copy-seq divider-packets))
- (sort (lambda (a b) (compare-lists a b))))
+ (sort #'compare-lists))
for i from 1
when (find packet divider-packets :test 'eq)
collect i))))