Problem I have a list of objects. Each object has two attributes: “score” and “coordinates”. I need to find the largest N objects of the list based on the score attribute. The main problem I’m having is sorting the objects using only the score attribute. Sorting can be partial. I’m only interested in the N largest objects. Current Solution My