Skip to content

Instantly share code, notes, and snippets.

View death's full-sized avatar

death

View GitHub Profile
@death
death / aoc2020-day24.lisp
Created December 24, 2020 13:30
aoc2020 day24
;;;; +----------------------------------------------------------------+
;;;; | Advent of Code 2020 |
;;;; +----------------------------------------------------------------+
(defpackage #:snippets/aoc2020/day24
(:use #:cl)
(:export
#:day24))
(in-package #:snippets/aoc2020/day24)
@death
death / aoc2020-day23.lisp
Created December 23, 2020 18:11
aoc2020 day23
;;;; +----------------------------------------------------------------+
;;;; | Advent of Code 2020 |
;;;; +----------------------------------------------------------------+
(defpackage #:snippets/aoc2020/day23
(:use #:cl)
(:export
#:day23))
(in-package #:snippets/aoc2020/day23)
@death
death / aoc2020-day22.lisp
Created December 22, 2020 12:41
aoc2020 day22
;;;; +----------------------------------------------------------------+
;;;; | Advent of Code 2020 |
;;;; +----------------------------------------------------------------+
(defpackage #:snippets/aoc2020/day22
(:use #:cl)
(:export
#:day22))
(in-package #:snippets/aoc2020/day22)
@death
death / aoc2020-day21.lisp
Last active December 21, 2020 11:33
aoc2020 day21
;;;; +----------------------------------------------------------------+
;;;; | Advent of Code 2020 |
;;;; +----------------------------------------------------------------+
(defpackage #:snippets/aoc2020/day21
(:use #:cl)
(:import-from
#:alexandria
#:make-keyword)
(:import-from
@death
death / aoc2020-day20.lisp
Created December 20, 2020 22:53
aoc2020 day20
;;;; +----------------------------------------------------------------+
;;;; | Advent of Code 2020 |
;;;; +----------------------------------------------------------------+
(defpackage #:snippets/aoc2020/day20
(:use #:cl)
(:shadowing-import-from
#:fset
#:empty-map
#:with
@death
death / aoc2020-day19.lisp
Last active December 20, 2020 00:02
aoc2020 day19
;;;; +----------------------------------------------------------------+
;;;; | Advent of Code 2020 |
;;;; +----------------------------------------------------------------+
(defpackage #:snippets/aoc2020/day19
(:use #:cl)
(:import-from
#:split-sequence
#:split-sequence-if)
(:shadowing-import-from
@death
death / aoc2020-day18.lisp
Last active December 18, 2020 11:25
aoc2020 day18
;;;; +----------------------------------------------------------------+
;;;; | Advent of Code 2020 |
;;;; +----------------------------------------------------------------+
(defpackage #:snippets/aoc2020/day18
(:use #:cl)
(:import-from
#:snippets/pratt
#:with-grammar
#:with-tokens
@death
death / aoc2020-day17.lisp
Last active December 17, 2020 10:02
aoc2020 day17
;;;; +----------------------------------------------------------------+
;;;; | Advent of Code 2020 |
;;;; +----------------------------------------------------------------+
(defpackage #:snippets/aoc2020/day17
(:use #:cl)
(:export
#:day17))
(in-package #:snippets/aoc2020/day17)
@death
death / aoc2020-day16.lisp
Created December 16, 2020 11:16
aoc2020 day16
;;;; +----------------------------------------------------------------+
;;;; | Advent of Code 2020 |
;;;; +----------------------------------------------------------------+
(defpackage #:snippets/aoc2020/day16
(:use #:cl)
(:import-from
#:split-sequence
#:split-sequence
#:split-sequence-if)
@death
death / aoc2020-day15.lisp
Created December 15, 2020 11:28
aoc2020 day15
;;;; +----------------------------------------------------------------+
;;;; | Advent of Code 2020 |
;;;; +----------------------------------------------------------------+
(defpackage #:snippets/aoc2020/day15
(:use #:cl)
(:export
#:day15))
(in-package #:snippets/aoc2020/day15)