Created
September 17, 2018 16:39
-
-
Save Serchinastico/e929690c1081cc9947dd9d2bdf49f34a to your computer and use it in GitHub Desktop.
groupby koan
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
// Return a map of the customers living in each city | |
fun Shop.groupCustomersByCity(): Map<City, List<Customer>> = | |
customers.groupBy { it.city } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment