Skip to content

Instantly share code, notes, and snippets.

@jeffreyiacono
Created October 19, 2012 18:06
Show Gist options
  • Select an option

  • Save jeffreyiacono/3919678 to your computer and use it in GitHub Desktop.

Select an option

Save jeffreyiacono/3919678 to your computer and use it in GitHub Desktop.
average
module Enumerable
def avg
reduce(0.0, :+) / length
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment