move integer-set into common lib

This commit is contained in:
xenia 2022-12-04 00:28:16 -05:00
parent 35112ef68d
commit 00244a4f1c
2 changed files with 4 additions and 4 deletions

3
4.rkt
View File

@ -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

View File

@ -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