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

OK, I have this simple function that finds the element of the list that maximizes the value of another positive function.

def get_max(f, s):
    # f is a function and s is an iterable

    best = None
    best_value = -1

    for element in s:
        this_value = f(element)
        if this_value > best_value:
            best = element
            best_value = this_value
    return best

But I find it very long for the simple work it does. In fact, it reminds me of Java (brrrr). Can anyone show me a more pythonic and clean way of doing this?

Thanks!
Manuel

share|improve this question
Apart from style, if you look closely enough you'll notice there are multiple bugs in this implementation. – Mike Graham Feb 11 '10 at 6:01

2 Answers

up vote 14 down vote accepted
def get_max(f, s):
  return max(s, key=f)
share|improve this answer
1  
+1 hard to do better than plain old max() – gnibbler Feb 11 '10 at 5:46
True! But I didn´t know you could pass this magic key argument. Thanks! – Manuel Aráoz Feb 11 '10 at 9:20
Reference: docs.python.org/library/functions.html#max – S.Lott Feb 11 '10 at 11:18
def get_max(f, s):
    l = [f(i) for i in s]
    l.sort()

    return l[-1]
share|improve this answer
You forgot to call sort. Also, your solution is O(n log n) when the linear solution is quite obvious. The best solution is to use max with the key argument provided. – Mike Graham Feb 11 '10 at 5:57

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.