To determine a number that is not the largest in an unordered list of \(N\) distinct integers, we only need to compare two elements.
- If we compare any two distinct elements, at least one of them is guaranteed to be smaller than the maximum.
- This means that in just one comparison, we can confirm that one of the numbers is not the largest.
Since we only need to confirm that one of the two numbers is smaller than the maximum, the minimum number of comparisons required is 1.