Skip to content

Instantly share code, notes, and snippets.

@benjamingeiger
Created June 28, 2014 16:36
Show Gist options
  • Save benjamingeiger/7a99a5266e797e9a3d2c to your computer and use it in GitHub Desktop.
Save benjamingeiger/7a99a5266e797e9a3d2c to your computer and use it in GitHub Desktop.
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