Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Min and Max by samulih
min = lambda *a, **k: sorted(a if len(a)-1 else a[0], **k)[0]
max = lambda *a, **k: min(*a, **dict(k, reverse=True))
May 14, 2014
Comments: