day-13.lisp (379B)
1 (defpackage #:aoc-test/day-13 2 (:use #:cl #:lisp-unit2)) 3 (in-package #:aoc-test/day-13) 4 5 (define-test test-day-13 6 () 7 (multiple-value-bind (task-1 task-2) 8 (aoc:run-day 13 "#.##..##. 9 ..#.##.#. 10 ##......# 11 ##......# 12 ..#.##.#. 13 ..##..##. 14 #.#.##.#. 15 16 #...##..# 17 #....#..# 18 ..##..### 19 #####.##. 20 #####.##. 21 ..##..### 22 #....#..#") 23 (assert= 405 task-1) 24 (assert= 400 task-2)))