Skip to content

Instantly share code, notes, and snippets.

@agrison
Created September 27, 2016 06:44
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 agrison/007b96466030ed6923d4f097bdd5a428 to your computer and use it in GitHub Desktop.
Save agrison/007b96466030ed6923d4f097bdd5a428 to your computer and use it in GitHub Desktop.
HackerRank gems-one-liner.clj
(use '[clojure.string :only (split-lines)]
'[clojure.set :only (intersection)])
(->> (slurp *in*) split-lines rest (map set) (apply intersection) count println)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment