Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Min and Max by Kurush
def min(*args, **kwargs):
key = kwargs.get("key", lambda x: x)
length = len(args)
if length == 1:
values = args[0]
else:
values = args
min_value = next(iter(values))
for value in values:
if key(value) < key(min_value):
min_value = value
return min_value
def max(*args, **kwargs):
key = kwargs.get("key", lambda x: x)
length = len(args)
if length == 1:
values = args[0]
else:
values = args
max_value = next(iter(values))
for value in values:
if key(value) > key(max_value):
max_value = value
return max_value
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert max(3, 2) == 3, "Simple case max"
assert min(3, 2) == 2, "Simple case min"
assert max([1, 2, 0, 3, 4]) == 4, "From a list"
assert min("hello") == "e", "From string"
assert max(2.2, 5.6, 5.9, key=int) == 5.6, "Two maximal items"
assert min([[1, 2], [3, 4], [9, 0]], key=lambda x: x[1]) == [9, 0], "lambda key"
assert min(abs(i) for i in range(-10, 10)) == 0, "iterator"
June 13, 2014
Comments: