Skip to content

Instantly share code, notes, and snippets.

@s1monw1
Created September 18, 2022 20:57
Show Gist options
  • Save s1monw1/eafb190b62dca0920d3963fa85f26aa6 to your computer and use it in GitHub Desktop.
Save s1monw1/eafb190b62dca0920d3963fa85f26aa6 to your computer and use it in GitHub Desktop.
fun <T> countOccurrences(values: Collection<T>): Map<T, Int> =
values.groupingBy { it }.eachCount()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment