How to find out the 3rd Largest number from a List using StreamAPI Functions
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);