(in-package #:adventofcode2020) ;;; Utility functions (defun list-from (str) (split "\\n" str)) (defun int-list-from (str) (mapcar #'parse-integer (split "\\n" str)))