Skip to content

Instantly share code, notes, and snippets.

@benjamingeiger
Created June 28, 2014 16:36
def max(seq, key=lambda x: x):
return reduce(lambda x, y: y if key(y) > key(x) else x, seq[1:], seq[0])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment