Skip to content

Instantly share code, notes, and snippets.

@mcohen01
Last active December 26, 2015 00:08
Show Gist options
  • Save mcohen01/7061525 to your computer and use it in GitHub Desktop.
Save mcohen01/7061525 to your computer and use it in GitHub Desktop.
top letters
(->> "http://www.giwersworld.org/computers/linux/common-words.phtml"
(clojure.java.shell/sh "curl")
:out
(re-find #"pre>[A-Z\s]*")
frequencies
(sort-by (comp - second))
rest
(take 10)
(map first))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment