How to find out the 3rd Largest number from a List using StreamAPI Functions
21:00 18 May 2026

I have a list of arrays in Integer and want to know third Largest number from the list. But I need to use the Stream API Functions.

List list = Arrays.asList(1,2,3,1,4,5,28, 23, 99, 32,102);
java-8 stream