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.
51 lines
1.9 KiB
Racket
51 lines
1.9 KiB
Racket
#lang scribble/manual
|
|
@(require (for-label racket rackunit sugar/list) aoc-racket/helper)
|
|
|
|
@title{Advent of Code: solutions & explanations}
|
|
|
|
@author[(author+email "Matthew Butterick" "mb@mbtype.com")]
|
|
|
|
@defmodule[aoc-racket]
|
|
|
|
@italic{Dedicated to curious characters everywhere, especially those learning Racket.}
|
|
|
|
@link["http://adventofcode.com"]{Advent of Code} is a series of programming puzzles designed by @link["http://was.tl"]{Eric Wastl}.
|
|
|
|
I find that programming puzzles are a good way of learning something new about a programming language, or learning how to do certain things better. Documenting these solutions helped me nail down some discoveries.
|
|
|
|
Thank you to Eric Wastl. If you like Advent of Code, please @link["http://adventofcode.com/about"]{pay him for it}.
|
|
|
|
You can install this package (if you haven't already) with
|
|
|
|
@tt{raco pkg install aoc-racket}
|
|
|
|
@local-table-of-contents[]
|
|
|
|
@include-section[(submod "day01.rkt" doc)]
|
|
@include-section[(submod "day02.rkt" doc)]
|
|
@include-section[(submod "day03.rkt" doc)]
|
|
@include-section[(submod "day04.rkt" doc)]
|
|
@include-section[(submod "day05.rkt" doc)]
|
|
@include-section[(submod "day06.rkt" doc)]
|
|
@include-section[(submod "day07.rkt" doc)]
|
|
@include-section[(submod "day08.rkt" doc)]
|
|
@include-section[(submod "day09.rkt" doc)]
|
|
@include-section[(submod "day10.rkt" doc)]
|
|
@include-section[(submod "day11.rkt" doc)]
|
|
@include-section[(submod "day12.rkt" doc)]
|
|
@include-section[(submod "day13.rkt" doc)]
|
|
@include-section[(submod "day14.rkt" doc)]
|
|
@include-section[(submod "day15.rkt" doc)]
|
|
@include-section[(submod "day16.rkt" doc)]
|
|
@include-section[(submod "day17.rkt" doc)]
|
|
@include-section[(submod "day18.rkt" doc)]
|
|
@include-section[(submod "day19.rkt" doc)]
|
|
@include-section[(submod "day20.rkt" doc)]
|
|
@include-section[(submod "day21.rkt" doc)]
|
|
@include-section[(submod "day22.rkt" doc)]
|
|
@include-section[(submod "day23.rkt" doc)]
|
|
@include-section[(submod "day24.rkt" doc)]
|
|
@include-section[(submod "day25.rkt" doc)]
|
|
|
|
|
|
@index-section[] |