Write a function min_max that takes a list of numbers and returns both the minimum and maximum.
Don't use Python's built-in min() and max() functions.
def min_max(numbers):
# Return (minimum, maximum)
Example: min_max([3, 1, 4, 1, 5]) returns (1, 5)
Track both values as you iterate through the list once.