Danilo Herrera
04/10/2018, 7:26 PMfun <K, V> combine(map1: Map<K, V>, map2: Map<K, V>): Map<K, V> {
val combined = mutableMapOf<K, V>()
map1.forEach { combined[it.key] = it.value }
map2.forEach { combined[it.key] = it.value }
return combined
}