Last active
December 6, 2023 12:40
-
-
Save buntine/e2449e3a38804436e130db953dd40b7a to your computer and use it in GitHub Desktop.
advent-of-code-2023-day6.clj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;golfed it | |
(apply * (map (comp count (fn [[t d]] (filter #(> (* (- t %) %) d) (range 1 t)))) {7 9 15 40 30 200})) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment