aboutsummaryrefslogtreecommitdiff
path: root/aoc2023-other/day-06
diff options
context:
space:
mode:
authorHunky Jimpjorps <thechairman@thechairman.info>2023-12-08 09:42:13 -0500
committerHunky Jimpjorps <thechairman@thechairman.info>2023-12-08 09:42:13 -0500
commitdf2f2fd140f188dfb5df68b44e397a8855e79f02 (patch)
tree9bb603eba8a3c46848bc59a6c5ba1c73ed34759c /aoc2023-other/day-06
parent82c3ecec3de5111b460910bafe141b3aed478676 (diff)
parentb51dd4b3768bce0209733ef2562cb96e5330d3c6 (diff)
downloadgleam_aoc-df2f2fd140f188dfb5df68b44e397a8855e79f02.tar.gz
gleam_aoc-df2f2fd140f188dfb5df68b44e397a8855e79f02.zip
Merge branch 'main' of https://github.com/hunkyjimpjorps/AdventOfCode
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))