Day 8: Use an actual whitespace character instead of a light-grey box.
This commit is contained in:
parent
c3f9b912f3
commit
e16d1abe4d
|
@ -46,7 +46,7 @@
|
|||
|
||||
(define part2
|
||||
(let* ([image (map (curry findf (curry neq? #\2)) (pivot layers))]
|
||||
[image* (map (λ (pixel) (if (eq? pixel #\1) #\█ #\░)) image)]
|
||||
[image* (map (λ (pixel) (if (eq? pixel #\1) #\█ #\ )) image)]
|
||||
[msg (map list->string (partition-into image* width))])
|
||||
(for-each displayln msg)))
|
||||
|
||||
|
|
Loading…
Reference in New Issue