Write and algorithm to find the second highest number in an integer array?
Réponses aux questions d'entretien
Utilisateur anonyme
26 mars 2017
wrote the code.
Utilisateur anonyme
27 sept. 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.