show/hide this revision's text 2 fix sentence structure, spelling, formatting, and wrong word choice.

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)).

show/hide this revision's text 1

You have to do it in O(n) time because you need to loop through all of the elemnts to check them. Unless they are already sorted.

In other words you need to loop through all elements and to the max and min check like you have.

Sorting is usually at best O(n*log(n)). Thus it is slower than a single sweep through.