Question d’entretien chez Bounteous

Find the 3rd largest integer in an array.

Réponse à la question d'entretien

Utilisateur anonyme

17 nov. 2023

Using dynamic programming, with three max variables. When traversing the array in a for loop, I assigned all the max variables accordingly each time to get the third largest element.