Skip to content

Instantly share code, notes, and snippets.

@kordano
Created October 30, 2014 22:12
Show Gist options
  • Save kordano/d5c5141f21014359cf1d to your computer and use it in GitHub Desktop.
Save kordano/d5c5141f21014359cf1d to your computer and use it in GitHub Desktop.
Random string of length n
(defn random-string [n]
(let [chars (map char (concat (range 48 58) (range 65 91) (range 97 123)))]
(apply str (take n (repeatedly #(rand-nth chars))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment