I’m having trouble figuring out the solution for my_merge.
The specs say it should yield each element to the block. However, the expected value is only [:b, 2, 3]
Obviously this isn’t every element but only the key that appears in both hashes. But if I only pass in whatever key is in both hashes, then the fourth test fails since :c won’t be added into the resulting hash
Is the test wrong or am I missing something?