From eb3fc31aa124e1e89137528cd3fffcf339dc8018 Mon Sep 17 00:00:00 2001 From: Dustin Swan Date: Wed, 8 Dec 2021 16:42:39 -0500 Subject: [PATCH] cleaning comments --- day8.rkt | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/day8.rkt b/day8.rkt index 205cdac..ea5a4dd 100644 --- a/day8.rkt +++ b/day8.rkt @@ -22,17 +22,7 @@ part1 ; part 2 ; Can we just count the number of times a segment appears? -; From the example: -; -; a = 8 -; b = 6 -; c = 8 * dup -; d = 7 -; e = 4 -; f = 9 -; g = 7 * dup again -; -; So no. But it's still helpful. Naming the segments A - G +; No. Damn. But it gets us close. Naming the segments A - G ; ; A has 8 instances and IS NOT in 1 ; B has 6 instances @@ -90,4 +80,4 @@ part1 (define part2 (foldl (λ (l acc) (+ acc (line->number l))) 0 data)) -part2 \ No newline at end of file +part2