here’s the first thing I came up with: ``` val mer...
# announcements
s
here’s the first thing I came up with:
Copy code
val merged = oldMap.map { (key, value) -> key to newMap.getOrDefault(key, value) }
val zipped = merged.associate { it }
definitely not as concise it could be though