How do I find the above without removing the largest element and searching again? Is there a more efficient way to do this? It does not matter if the these elements are dupl
Create a sublist from n..m, sort it descending. Then grab the first two elements. Delete these elements from the orginal list.