advent-of-code-2023

My solutions to AoC 2023
git clone git://git.entf.net/advent-of-code-2023
Log | Files | Refs

day-11.lisp (316B)


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