1
0
Fork 0

Remove redundant import of racket/set.

This commit is contained in:
Jonathan Chan 2021-12-13 23:33:43 -08:00 committed by Jonathan Chan
parent 08ceca323d
commit 701078cd86
5 changed files with 5 additions and 10 deletions

View File

@ -1,7 +1,6 @@
#lang curly-fn racket #lang curly-fn racket
(require racket/set (require "../lib.rkt")
"../lib.rkt")
(define input (define input
(for/list ([entry (problem-input 8)]) (for/list ([entry (problem-input 8)])

View File

@ -1,7 +1,6 @@
#lang curly-fn racket #lang curly-fn racket
(require racket/set (require "../lib.rkt")
"../lib.rkt")
(define input (define input
(for/vector ([row (problem-input 9)]) (for/vector ([row (problem-input 9)])

View File

@ -1,7 +1,6 @@
#lang curly-fn racket #lang curly-fn racket
(require racket/set (require "../lib.rkt")
"../lib.rkt")
(define input (define input
(for/vector ([row (problem-input 11)]) (for/vector ([row (problem-input 11)])

View File

@ -1,7 +1,6 @@
#lang curly-fn racket #lang curly-fn racket
(require racket/set (require "../lib.rkt")
"../lib.rkt")
(define input (define input
(for/fold ([caves (hash)]) (for/fold ([caves (hash)])

View File

@ -1,7 +1,6 @@
#lang curly-fn racket #lang curly-fn racket
(require racket/set (require "../lib.rkt")
"../lib.rkt")
(struct line (axis coord)) (struct line (axis coord))