Skip to content

Instantly share code, notes, and snippets.

@tinwritescode
Created September 3, 2020 10:02
Show Gist options
  • Save tinwritescode/9389e2f0d33d752bb07f5049ddc4a7cc to your computer and use it in GitHub Desktop.
Save tinwritescode/9389e2f0d33d752bb07f5049ddc4a7cc to your computer and use it in GitHub Desktop.
std::sort(students.begin(), students.end(), [](std::shared_ptr<Student> a, std::shared_ptr<Student> b) {
return a->getAvgMark() > b->getAvgMark();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment