Skip to content

Instantly share code, notes, and snippets.

@alexlarkou
Created November 19, 2018 16:21
Show Gist options
  • Save alexlarkou/088d8ce9bfdf4690481a1b4eafea72e5 to your computer and use it in GitHub Desktop.
Save alexlarkou/088d8ce9bfdf4690481a1b4eafea72e5 to your computer and use it in GitHub Desktop.
// c#
IEnumerable<IGrouping<int, IEnumerable<Student>>> studentsGrouppedByYear = studentsInAllSchools.GroupBy(s => s.get_year());
// java
Map<Integer, List<Student>> studentsGrouppedByYear = studentsInAllSchools.collect(Collectors.groupingBy(s -> s.get_year()));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment