You have to do it in O(n) time because you need to loop through all (n) of the elemnts elements to check them because any one of the elements may be the min or max. (Unless they are already sorted.sorted.)
In other words you need to loop through all elements and to do the max and min check like you have.
Sorting is usually at best O(n*log(n))O(n*log(n)). Thus it is slower than a single sweep through (O(n)).
