Skip to content

Instantly share code, notes, and snippets.

@llasram
Forked from timvisher/-
Last active July 30, 2017 17:38
Show Gist options
  • Save llasram/5860685 to your computer and use it in GitHub Desktop.
Save llasram/5860685 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