Last active
August 15, 2020 13:54
-
-
Save ericntd/d0ba21fafd3b36859b7f971ad23da718 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// prepare variable employees which is a list of Employee object | |
// Same as Task 0 | |
employees.groupingBy { it.department } | |
.eachCount() | |
.forEach { (s, i) -> | |
println("there are $i employees for department $s") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment