From: Jack Kinsey Date: Tue, 1 Dec 2020 22:36:25 +0000 (-0500) Subject: Add day 01 X-Git-Url: http://git.jkinsey.net/?a=commitdiff_plain;h=57470a5c425eb4418c6eed3d4c5ccf47bb6a10cc;p=adventofcode2020.git Add day 01 --- diff --git a/package.lisp b/package.lisp index 363adb0..6a6f94b 100644 --- a/package.lisp +++ b/package.lisp @@ -1,3 +1,4 @@ +; (ql:quickload :fiveam) (ql:quickload :cl-ppcre) (defpackage #:adventofcode2020 (:use #:cl #:arrow-macros diff --git a/src/adventofcode2020.lisp b/src/adventofcode2020.lisp index 54a6aca..4eaba06 100644 --- a/src/adventofcode2020.lisp +++ b/src/adventofcode2020.lisp @@ -6,8 +6,8 @@ ,@body))) (defun part1 (str) - (format t "Part 1: ~A~%" str)) + (time (format t "Part 1: ~A~%" str))) (defun part2 (str) - (format t "Part 2: ~A~%" str)) + (time (format t "Part 2: ~A~%" str))) diff --git a/src/day01.lisp b/src/day01.lisp new file mode 100644 index 0000000..adb36e6 --- /dev/null +++ b/src/day01.lisp @@ -0,0 +1,29 @@ +(in-package #:adventofcode2020) + +(defun calculate-expenses (&rest reports) + (let ((prod (apply #'cartesian-product reports))) + (loop for tuple in prod + when (= (apply #'+ tuple) 2020) + return (apply #'* tuple)))) + +(day 01 input + (let ((report (int-list-from input))) + (part1 (calculate-expenses report report)) + (part2 (calculate-expenses report report report)))) + +(def-suite day01) +(in-suite day01) + +(test simple-expenses + (is (equal + 514579 + (let ((report '(1721 979 366 299 675 1456))) + (calculate-expenses report report))))) + +(test complex-expenses + (is (equal + 241861950 + (let ((report '(1721 979 366 299 675 1456))) + (calculate-expenses report report report))))) + +(run! 'day01) diff --git a/src/utilities.lisp b/src/utilities.lisp index c677e96..ab6c3e8 100644 --- a/src/utilities.lisp +++ b/src/utilities.lisp @@ -7,3 +7,34 @@ (defun int-list-from (str) (mapcar #'parse-integer (split "\\n" str))) + +(defun cartesian-product (A B &rest C) + (let ((helper (lambda (X Y) + (if Y (loop for x in X + nconc (loop for y in Y + collecting (append x (list y)))) + X))) + (wrap-A (mapcar #'list A))) + (reduce helper C :initial-value (funcall helper wrap-A B)))) + +(def-suite util) +(in-suite util) + +(test cart-prod-2 + (is (equal + '((a a) (a b) (b a) (b b)) + (cartesian-product '(a b) '(a b))))) + +(test cart-prod-3 + (is (equal + '((a a a) (a a b) (a b a) (a b b) + (b a a) (b a b) (b b a) (b b b)) + (cartesian-product '(a b) '(a b) '(a b))))) + +(test cart-prod-4 + (is (equal + '((a a a a) (a a a b) (a a b a) (a a b b) (a b a a) (a b a b) (a b b a) (a b b b) + (b a a a) (b a a b) (b a b a) (b a b b) (b b a a) (b b a b) (b b b a) (b b b b)) + (cartesian-product '(a b) '(a b) '(a b) '(a b))))) + +