Range of |2| ~~~~~~~~~~~~ In mathematics, range is defined as the difference between the largest and the smallest values in a set of values. Implement a function named *range_of* that takes a list of integers and returns the range of it as an integer. The elements in list are not necessarily in ascending order. You cannot use built-in functions :math:`\color{purple}{\texttt{min()}}` or :math:`\color{purple}{\texttt{max()}}`. .. container:: sampleio Sample I/O: .. |2| image:: ../../figures/difficulty_two.png :class: difficulty .. code:: default >>> range_of([1, 4, 6, 28, -10, 0, 0, 1]) 38 >>> range_of([1]) 0 >>> range_of([2, 2]) 0 .. raw:: html .. raw:: html