Skip to content

Instantly share code, notes, and snippets.

@mfikes

mfikes/dup.clj Secret

Created December 1, 2018 15:03
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 mfikes/53c53673f66257878ab82408635f297d to your computer and use it in GitHub Desktop.
Save mfikes/53c53673f66257878ab82408635f297d to your computer and use it in GitHub Desktop.
(defn part-2' []
(let [freqs (reductions + (cycle data))]
(->> (map vector freqs (distinct freqs))
(remove #(apply == %))
(ffirst))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment