Write and algorithm to find the second highest number in an integer array?
Respuestas de entrevistas
Anónimo
26 de mar de 2017
wrote the code.
Anónimo
27 de sept de 2024
Example: Let’s say your array is {5, 2, 9, 1, 5, 6}.
Write down: 5, 2, 9, 1, 5, 6.
Remove duplicates: 5, 2, 9, 1, 6 (unique values).
Sort in descending order: 9, 6, 5, 2, 1.
Identify the second highest: The second highest number is 6.