-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmin-max.py
More file actions
29 lines (25 loc) · 974 Bytes
/
min-max.py
File metadata and controls
29 lines (25 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
def min(*args, **kwargs):
key = kwargs.get("key", lambda x: x)
iterable = args if len(args) > 1 else args[0]
result = None
for x in iterable:
if result == None or key(x) < key(result):
result = x
return result
def max(*args, **kwargs):
key = kwargs.get("key", lambda x: x)
iterable = args if len(args) > 1 else args[0]
result = None
for x in iterable:
if result == None or key(x) > key(result):
result = x
return result
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"
print('done')