Python Question:
Write a function which is passed a list of numbers and returns the minimum number in the list.
You are not allowed to use the built-in Python min function. You may assume that there is at least one item in the list. If x is a list, you may assume that it is not empty.