Guest User

Untitled

a guest
Apr 20th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. ((comp
  2. (partial reduce (fn [sum i] (+ sum i)) 0)
  3. (partial filter #(= 1 (mod % 2)))
  4. (partial map #(count (.split % " ")))
  5. (partial remove #(re-find #"^#" %))
  6. #(.split % "\n"))
  7. text)
Add Comment
Please, Sign In to add comment