aoc2020/scripts/aoc.rkt

37 lines
1.2 KiB
Racket
Raw Normal View History

2020-12-02 08:49:57 +00:00
#lang racket
;; utilities for every challenge script
2020-12-07 07:35:11 +00:00
(require "aoc-lib.rkt" threading syntax/parse/define (for-syntax racket/syntax) graph)
2020-12-10 06:19:00 +00:00
(provide answer dbg memoize define/memoized
(all-from-out threading syntax/parse/define graph)
(for-syntax (all-from-out racket/syntax)))
2020-12-02 08:49:57 +00:00
;; in-expression debug print, uwu
(define (dbg x)
(pretty-write x)
x)
2020-12-10 06:19:00 +00:00
;; makes a memoization wrapper around a function
(define (memoize func)
(define memo (make-hash))
(lambda (arg)
(hash-ref! memo arg (λ () (func arg)))))
(define-simple-macro (define/memoized (name:id arg:id) body:expr ...+)
(define name (memoize (λ (arg) body ...))))
2020-12-02 08:49:57 +00:00
;; submit a solution to the server if not already submitted
(define (answer day part answer)
(printf "answer ~a.~a: ~s\n" day part answer)
(unless (aoc-complete? day part)
(printf "submit? [Y/n]: ")
(match (string-downcase (string-trim (read-line)))
[(or "" "y" "yes")
(printf "submitting...\n")
(define resp
(aoc-submit-answer (getenv "AOC_YEAR") (~a day) (getenv "AOC_SESSION") (~a part)
(~a answer)))
(printf "server responded: ~a\n" resp)]
[_ (printf "not submitting\n")])))