Skip to content

Instantly share code, notes, and snippets.

@trilliwon
Created September 22, 2018 10:03
Show Gist options
  • Save trilliwon/4576196690e772dfce3b46d3e71a2eae to your computer and use it in GitHub Desktop.
Save trilliwon/4576196690e772dfce3b46d3e71a2eae to your computer and use it in GitHub Desktop.
extension Array where Element: Hashable {
func counter() -> [Element: Int] {
return self.reduce(into: [:]) { counts, elem in counts[elem, default: 0] += 1 }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment