-
-
Save dustMason/b2ffbe695c193a786f2f79616ab2e366 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def find_median_sorted arr1, arr2 | |
joined = (arr1 + arr2).sort | |
if joined.size % 2 == 0 | |
return joined[(joined.size/2)-1..(joined.size/2)].reduce(&:+) / 2.0 | |
else | |
return joined[joined.size/2] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment