What would be an efficient and pythonic way to check list monotonicity?
i.e. that it has monotonically increasing or decreasing values?
Examples:
[0,1,2,3,3,4] # This is a monotonically increasing list
[4.3,4.2,-2] # This is a monotonically decreasing list
[2,3,1] # This is neither