Initial commit

This commit is contained in:
Dimitri Lozeve 2024-11-12 21:43:32 +01:00
commit f242d2b0df
420 changed files with 62521 additions and 0 deletions

49
2020/day10/day10.rkt Normal file
View file

@ -0,0 +1,49 @@
#lang racket
(module+ test
(require rackunit))
(module+ main
(displayln "Day 10"))
(define (read-input filename)
(define input (map string->number (file->lines filename)))
(sort (cons 0 (cons (target input) input)) <))
(define (target lst)
(+ 3 (apply max lst)))
(define (part1 filename)
(define jolts (read-input filename))
(define counts (make-hash))
(for ([x (in-list (drop jolts 1))]
[y (in-list jolts)])
(hash-update! counts (- x y) add1 0))
(* (hash-ref counts 1 0) (hash-ref counts 3 0)))
(module+ test
(check-equal? (part1 "test1") (* 7 5))
(check-equal? (part1 "test2") (* 22 10)))
(module+ main
(displayln (part1 "input")))
(define (count-paths jolts)
(define counts (make-hash))
(hash-set! counts 0 1)
(for ([x (in-list (cdr jolts))])
(hash-set! counts x (+ (hash-ref counts (- x 1) 0)
(hash-ref counts (- x 2) 0)
(hash-ref counts (- x 3) 0))))
(hash-ref counts (last jolts)))
(define (part2 filename)
(define jolts (read-input filename))
(count-paths jolts))
(module+ test
(check-equal? (part2 "test1") 8)
(check-equal? (part2 "test2") 19208))
(module+ main
(displayln (part2 "input")))