it's Sunday so forgive the laziness, but here's wh...
# announcements
n
it's Sunday so forgive the laziness, but here's what I thought of
Copy code
val a = mapOf("a" to 3)
	val b = mapOf("a" to 4, "b" to 5)

	val unionKeys = a.keys.union(b.keys)
	val merged = hashMapOf<String, Pair<Int, Int>>()
	for (key in unionKeys) {
		merged[key] = Pair(a[key]!!, b[key]!!)
	}
	println(merged)
d
@Nicholas Bilyk Like I said to Ilya, I need the key, that matched, and first null when
b
is 5