resolve conflict with caches in day19

This commit is contained in:
Peter Tillemans 2024-12-21 06:31:46 +01:00
parent 43c466038b
commit 529747fd7e

View file

@ -44,6 +44,7 @@ bbrgwb"))
(defvar *pattern-cache* (make-hash-table :test #'equal)) (defvar *pattern-cache* (make-hash-table :test #'equal))
(defvar *possible-cache* (make-hash-table :test #'equal)) (defvar *possible-cache* (make-hash-table :test #'equal))
(defun reset-patterns () (defun reset-patterns ()
(setf *pattern-cache* (make-hash-table :test #'equal)) (setf *pattern-cache* (make-hash-table :test #'equal))
(setf *possible-cache* (make-hash-table :test #'equal))) (setf *possible-cache* (make-hash-table :test #'equal)))