You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
aoc-racket/2016/day15/lang.rkt

27 lines
873 B
Racket

#lang br/quicklang ;; http://adventofcode.com/2016/day/15
(require openssl/md5)
(provide read-syntax
(rename-out [mb #%module-begin]))
(define (read-syntax path port)
(strip-bindings
#`(module mod "lang.rkt"
#,@(for/list ([line (in-list (string-split (port->string port) "\n"))])
`(disc ,@(map string->number (regexp-match* #px"\\d+" line)))))))
(define-macro (mb . DISCS)
#'(#%module-begin
(solve . DISCS)))
(define-macro (solve . DISCS)
(with-pattern ([(DISC# ...) (generate-temporaries #'DISCS)]
[(DISC-SLOTS ...) #'DISCS])
#'(for/first ([DISC# (in-cycle DISC-SLOTS)] ...
[i (in-naturals)]
#:when (= 0 DISC# ...))
i)))
(require sugar/list)
(define-macro (disc TIME-OFFSET SIZE _ START)
#'(shift-left-cycle (range SIZE) (+ START TIME-OFFSET)))
(provide disc)