Skip to content

Commit 102f783

Browse files
Remove extra CANONICALIZE call
Not required, as it was done few lines above
1 parent 1b36590 commit 102f783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/2024/day23.lisp

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
(computers (gethash comp edges)))
2222
(zapf clique #'canonicalize)
2323
(unless-already-seen (seen clique)
24-
(cond ((= (length clique) size) (adjoin! (canonicalize clique)))
24+
(cond ((= (length clique) size) (adjoin! clique))
2525
(t (dolist (comp computers)
2626
(recur (cons comp clique)
2727
(intersection computers (gethash comp edges)

0 commit comments

Comments
 (0)