Finding two biggest numbers out of three numbers efficiently
It is a simple problem, and many of us must have had such problem either in exam or exercises or math-quiz or may be in real life. There are many ways to solve this, here is one efficient way to solve it. I do not claim it is to be most efficient or the only method. I found it out so I thought its good to share. It is not programming, its just logic. Consider three numbers a, b, c First I will put the (what I think is) dumbest way - step by step, considering each scenario, //Finding 2 biggest numbers from list of three numbers i.e. a, b, c //Considering all values are different like 12, 45, 48 if( a>c && b>c ){ "Two big numbers are a & b" }else if( b>a && c>a ){ "Two big numbers are b & c" }else if( a>b && c>b ){ "Two big numbers are a & c" } //in case any 2 values are equal like 22, 22, 1212 //so there are three cases either a=b or b=c or a=c //a=b case ...