Min Max Tuple
[email protected] // 1.0 // type-checkable
Write a function called min_max
that takes a list of numbers.
It returns a tuple of the list's minimum value and maximum value, in that order.
(You are encouraged to use built-in Python functions to find the extreme values!)
If the list is empty, return None
rather than a tuple.
(This implies that the function's return type is not just a tuple
.)