Skip to content

Instantly share code, notes, and snippets.

@stonean
Created October 27, 2010 11:23
Show Gist options
  • Save stonean/648866 to your computer and use it in GitHub Desktop.
Save stonean/648866 to your computer and use it in GitHub Desktop.
class Array
def sum
inject(0.0) { |result, el| result + el }
end
def mean
sum / size
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment