There is a list of dates in the form of array list Example : 11/02/2012 21/04/2019 12/03/2061 11/09/1961 22/08/2014
We will have to return the third latest date from the above list
I feel we will have to first sort in descending order of year and take the third latest date from that
Could you please give me a suggestions on this?