In this problem you'll need a way to represent the largest possible number: infinity. In Python, you can use this constant to represent positive infinity:
my_infinity = float("inf")
Write a function called find_min() that finds the smallest number in a list. For example:
find_min([1, 3, -1, 2]) -> -1find_min([18, 3, 7, 2]) -> 2Do not use the built-in min() function.