Skip to content

Instantly share code, notes, and snippets.

@timvisher
Created June 25, 2013 17:55
Show Gist options
  • Save timvisher/5860676 to your computer and use it in GitHub Desktop.
Save timvisher/5860676 to your computer and use it in GitHub Desktop.
(defn average [n1 n2 & ns]
(let [ns (into [n1 n2] ns)]
(/ (apply * ns) (count ns))))
(apply average (range 1 100))
;;; => java.lang.ArithmeticException: integer overflow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment