move integer-set into common lib
This commit is contained in:
parent
35112ef68d
commit
00244a4f1c
3
4.rkt
3
4.rkt
|
@ -1,7 +1,6 @@
|
|||
#lang curly-fn racket
|
||||
|
||||
(require "scripts/aoc.rkt"
|
||||
(prefix-in is: data/integer-set))
|
||||
(require "scripts/aoc.rkt")
|
||||
|
||||
;; solution for day 4
|
||||
|
||||
|
|
|
@ -2,11 +2,12 @@
|
|||
|
||||
;; utilities for every challenge script
|
||||
|
||||
(require "aoc-lib.rkt" threading syntax/parse/define (for-syntax racket/syntax) graph)
|
||||
(require "aoc-lib.rkt" (prefix-in is: data/integer-set) graph threading syntax/parse/define
|
||||
(for-syntax racket/syntax))
|
||||
(provide answer aoc-finish dbg memoize define/memoized
|
||||
band bor bxor bnot bshl bshr bset? bfield
|
||||
maximum-bipartite-matching/stable
|
||||
(all-from-out threading syntax/parse/define graph)
|
||||
(all-from-out data/integer-set graph syntax/parse/define threading)
|
||||
(for-syntax (all-from-out racket/syntax)))
|
||||
|
||||
;; in-expression debug print, uwu
|
||||
|
|
Loading…
Reference in New Issue