diff options
Diffstat (limited to 'aoc2023-other/day-20/day-20.rkt')
-rw-r--r-- | aoc2023-other/day-20/day-20.rkt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/aoc2023-other/day-20/day-20.rkt b/aoc2023-other/day-20/day-20.rkt index 7bfef73..6d43192 100644 --- a/aoc2023-other/day-20/day-20.rkt +++ b/aoc2023-other/day-20/day-20.rkt @@ -5,8 +5,7 @@ data/applicative data/monad megaparsack - megaparsack/text - struct-update) + megaparsack/text) (struct broadcaster ()) (struct flipflop (state received) #:transparent) @@ -14,9 +13,6 @@ (struct cable (type dests) #:transparent) (struct nothing ()) -(define-struct-updaters flipflop) -(define-struct-updaters conjunction) - (define charlist->symbol (λ~>> (apply string) string->symbol)) (define input (fetch-aoc-input (find-session) 2023 20 #:cache true)) |