c677e964c2cda5fd874d39b7c06b09586a0013c7
[adventofcode2020.git] / src / utilities.lisp
1 (in-package #:adventofcode2020)
2
3 ;;; Utility functions
4
5 (defun list-from (str)
6 (split "\\n" str))
7
8 (defun int-list-from (str)
9 (mapcar #'parse-integer (split "\\n" str)))