Domanda di colloquio di Bounteous

Find the 3rd largest integer in an array.

Risposta di colloquio

Anonimo

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.