Pergunta de entrevista da empresa Bounteous

Find the 3rd largest integer in an array.

Resposta da entrevista

Sigiloso

17 de nov. de 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.