Skip to content

Instantly share code, notes, and snippets.

@roman01la
Last active December 1, 2021 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roman01la/ea2831ebcdb44214fb14b361d4b8cd56 to your computer and use it in GitHub Desktop.
Save roman01la/ea2831ebcdb44214fb14b361d4b8cd56 to your computer and use it in GitHub Desktop.
(defn part-1 [input]
(->> input
(partition 2 1)
(filter #(apply < %))
count))
(defn part-2 [input]
(->> input
(partition 3 1)
(map #(apply + %))
part-1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment