Skip to content

Instantly share code, notes, and snippets.

@micodel
Created January 6, 2014 17:06
Show Gist options
  • Save micodel/8285950 to your computer and use it in GitHub Desktop.
Save micodel/8285950 to your computer and use it in GitHub Desktop.
def mean(array)
sum = 0
array.each do |x|
sum += x
end
mean = sum / array.length
mean
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment