Does the demotion logic still apply to minimums?
Yes. When a new absolute minimum is found, the previous minimum is 'demoted' to the second minimum position.
Verify This Answer
Cross-check this information using these trusted sources:
More FAQs in Finding the Second Smallest Element
The structural logic is identical. The only differences are initializing variables to very large numbers instead of very small ones, and checking for < instead of >.
If you initialize 'min' to 0 and the array contains only positive numbers, the condition (current < min) will never trigger, and 0 will incorrectly be returned.
In Java, use Integer.MAX_VALUE. In C++, use INT_MAX from the <climits> library. In Python, use float('inf').
Still have questions?
Browse all our FAQs or reach out to our support team
