Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How i get max pair in a list of pairs with min y?

I got this list:

L =[[1,3],[2,5],[-4,0],[2,1],[0,9]]

With max(L) i get [2,5], but i want [2,1].

share|improve this question
1  
What is a "max pair"? – Fábio Diniz Feb 25 '11 at 14:19

3 Answers

max(L, key=lambda item: (item[0], -item[1]))

Output:

[2, 1]
share|improve this answer
1  
I like this solution. Tuple expansion can also be used max(L, key=lambda (x, y): (x, -y)) – kevpie Mar 20 '11 at 21:50
import operator

get_y= operator.itemgetter(1)
min(L, key=get_y)[0]

Finds the coordinate with minimum y, retrieves x.

If you dislike operator.itemgetter, do:

min(L, key=lambda c: c[1])[0]
share|improve this answer

Your request is kind of cryptic, but I think this is what you want:

x, y = zip(*L)
maxPairs = [L[i] for i,a in enumerate(x) if a == max(x)]
returnPair = sorted(maxPairs)[0]
share|improve this answer
singularity's solution is the one you should use. – mjbommar Mar 20 '11 at 20:53

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.