Skip to content

Instantly share code, notes, and snippets.

@jjhop
Created February 4, 2019 01:39
Show Gist options
  • Save jjhop/dc2d3d4a407eb460e98f295c0504d0e1 to your computer and use it in GitHub Desktop.
Save jjhop/dc2d3d4a407eb460e98f295c0504d0e1 to your computer and use it in GitHub Desktop.
(require '[clojure.string :as str])
(defn parse-digits [input]
(->>
(str/split input #"")
(map #(.charAt % 0))
(filter #(Character/isDigit %))
(map #(Character/digit % 10))
(apply str)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment