Created
June 3, 2016 06:14
-
-
Save lagenorhynque/7d9514dc4c37ba65b2a70b52943b75d1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns random-alphanumeric-generator) | |
(def alphanumeric "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890") | |
(defn rand-alphanumeric [len] | |
(repeatedly len #(rand-nth alphanumeric))) | |
(->> (repeatedly #(rand-alphanumeric 5)) | |
(filter (fn [[a _ _ _ b]] (= a b))) | |
(map #(apply str %)) | |
(take 10)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment