aboutsummaryrefslogtreecommitdiff
path: root/2024/util.lisp
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-12-04 02:43:12 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-12-04 02:43:12 +0000
commit61aa2c1ded3b2d38243432968d8e72e29322f820 (patch)
tree9f1fffbdc4a49646534d880dd79b5d6702ea6b40 /2024/util.lisp
parente253bc500686b7d9adec1686d20c75714cf2ddf0 (diff)
downloadadvent-of-code-61aa2c1ded3b2d38243432968d8e72e29322f820.tar.gz
advent-of-code-61aa2c1ded3b2d38243432968d8e72e29322f820.tar.bz2
advent-of-code-61aa2c1ded3b2d38243432968d8e72e29322f820.zip
Optimise solutions a bit for 2024HEADmaster
Diffstat (limited to '2024/util.lisp')
-rw-r--r--2024/util.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/2024/util.lisp b/2024/util.lisp
index 11ec230..71a7e13 100644
--- a/2024/util.lisp
+++ b/2024/util.lisp
@@ -2,7 +2,7 @@
(if (null functions)
first
`(let* ,(loop :for f :in (cons first functions)
- appending `((_ ,f)))
+ :appending `((_ ,f)))
_)))
(defun search-all (substr str &optional acc len)