Skip to content

Instantly share code, notes, and snippets.

@rightfold
Created November 8, 2014 16:04
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 rightfold/a2394f6d9cd785fcc990 to your computer and use it in GitHub Desktop.
Save rightfold/a2394f6d9cd785fcc990 to your computer and use it in GitHub Desktop.
(defn weighted-rand-nth [xs]
(let [t (rand)
ts (map vector (keys xs) (reductions + (vals xs)))]
(ffirst (filter #(> (% 1) t) ts))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment