Skip to content

Instantly share code, notes, and snippets.

@wtfcarlos
Created April 6, 2015 20:02
Show Gist options
  • Save wtfcarlos/e789952701a899421a3a to your computer and use it in GitHub Desktop.
Save wtfcarlos/e789952701a899421a3a to your computer and use it in GitHub Desktop.
(fn [d ks] (loop [result {}, remaining ks, default d]
(if (not (empty? remaining))
(recur (conj result {(first remaining) default})
(rest remaining)
d)
result)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment