Skip to content

Instantly share code, notes, and snippets.

@L8D
Last active February 21, 2018 21:41
Show Gist options
  • Save L8D/6187830 to your computer and use it in GitHub Desktop.
Save L8D/6187830 to your computer and use it in GitHub Desktop.
Median of array in ruby
def median_of a
return nil if a.empty?
sorted = a.sort
len = sorted.length
(sorted[(len - 1) / 2] + sorted[len / 2]) / 2.0
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment