Skip to content

Instantly share code, notes, and snippets.

@pjagielski
Created August 5, 2018 21:34
Show Gist options
  • Save pjagielski/4991a52da3b539ed9749cef86cfdf284 to your computer and use it in GitHub Desktop.
Save pjagielski/4991a52da3b539ed9749cef86cfdf284 to your computer and use it in GitHub Desktop.
(require '[clojure.string :as string])
(defn goal-time [t]
(->>
(string/split t #"\+")
(map string/trim)
(map #(string/replace % #"'" ""))
(map #(Integer/parseInt %))
(reduce +)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment