Skip to content

Instantly share code, notes, and snippets.

@tiagodavi
Created July 19, 2016 21:14
Show Gist options
  • Save tiagodavi/23e86fdbb3caf82313725f1490621468 to your computer and use it in GitHub Desktop.
Save tiagodavi/23e86fdbb3caf82313725f1490621468 to your computer and use it in GitHub Desktop.
(defn to-int [x] (Integer/parseInt x) )
(defn string-to-vector [x] (clojure.string/split x #" "))
(def size (read-line))
(def items (read-line))
(println (reduce + (map to-int (string-to-vector items))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment