aboutsummaryrefslogtreecommitdiff
path: root/aoc2023-other/day-06
diff options
context:
space:
mode:
authorHJ <thechairman@thechairman.info>2023-12-08 02:59:26 -0500
committerHJ <thechairman@thechairman.info>2023-12-08 02:59:26 -0500
commitb9c4b4dfadd305c55fb09d421252780cb254f89b (patch)
treec92d27064bf177d72e7cc55a1eeee713e957ef63 /aoc2023-other/day-06
parentc82dee4b12a824ff73dc91f89445d4df75d3c876 (diff)
downloadgleam_aoc-b9c4b4dfadd305c55fb09d421252780cb254f89b.tar.gz
gleam_aoc-b9c4b4dfadd305c55fb09d421252780cb254f89b.zip
day 8 complete
Diffstat (limited to 'aoc2023-other/day-06')
-rw-r--r--aoc2023-other/day-06/day-06.rkt3
1 files changed, 2 insertions, 1 deletions
diff --git a/aoc2023-other/day-06/day-06.rkt b/aoc2023-other/day-06/day-06.rkt
index 2897821..399c131 100644
--- a/aoc2023-other/day-06/day-06.rkt
+++ b/aoc2023-other/day-06/day-06.rkt
@@ -1,7 +1,8 @@
#lang racket
(require advent-of-code
- threading)
+ threading
+ )
(match-define (list times distances)
(~> (open-aoc-input (find-session) 2023 6 #:cache #true) port->lines))