Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Given 3 numbers, I need to find which number lies between the two others.

ie,given 3,5,2 I need 3 to be returned.

I tried to implement this by going thru all three and using if else conditions to check if each is between the other two.But this seems a naive way to do this.Is there a better way?

share|improve this question
2  
Is it really always three? – alan Apr 2 '12 at 15:57
3  
Which result do you expect for [1,1,2]? – Tim Pietzcker Apr 2 '12 at 15:58
1  
sorted([3,5,2])[1] – tMC Apr 2 '12 at 16:01
for [1,1,2] , 1 should be taken as middle number – damon Apr 2 '12 at 16:08

6 Answers

up vote 7 down vote accepted

Put them in a list, sort them, pick the middle one.

share|improve this answer
1  
+1 for not giving the code :-) – Simon Apr 2 '12 at 15:58
1  
my bad! should've thought that! thanks a lot – damon Apr 2 '12 at 16:09
2  
I knew this would happen... – jamylak Apr 2 '12 at 16:11
Just a brillant ansnwer... – George Apr 2 '12 at 16:38
1  
Sven, beside being a generic answer, it is bad for the case of 3 numbers. If this kind of subroutine appears in heavy-calculations-related task, creating a list of three elements and sorting it is not the right thing even for Python. Imagine the guy next time working i.e. in c++ and creating a vector of three numbers and sorting it... – BasicWolf Apr 2 '12 at 16:51
show 4 more comments

You could do

numbers = [3, 5, 2]
sorted(numbers)[1]
share|improve this answer

What you want is the median. You can use this code below for any number of numbers:

import numpy
numbers = [3,5,2]
median = numpy.median(numbers)

for a custom solution you can visit this page.

share|improve this answer
1  
In the case of the OP I don't think he is ready to be using something like numpy. – jamylak Apr 2 '12 at 16:10

This is a O(n) implementation of the median using cumulative distributions. It's faster than sorting, because sorting is O(ln(n)*n).

def median(data):
    frequency_distribution = {i:0 for i in data}
    for x in data:
        frequency_distribution[x] =+ 1
    cumulative_sum = 0
    for i in data:
        cumulative_sum += frequency_distribution[i]
        if (cumulative_sum > int(len(data)*0.5)):
            return i
share|improve this answer

The fastest obvious way for three numbers

def mean3(a, b, c):
    if a <= b <= c or c <= b <= a:
        return b
    elif b <= a <= c or b >= a >= c:
        return a
    else:
        return c
share|improve this answer
mean3(3,5,2) will give 2 instead of 3 ? – damon Apr 2 '12 at 19:31
@damon thank you for noticing. Fixed. – BasicWolf Apr 2 '12 at 20:00
>>> x = [1,3,2]
>>> sorted(x)[len(x)//2]
2
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.