Swift - Collections
How can you merge two Swift dictionaries so that values from the second overwrite duplicates in the first?
let dict1 = ["a": 1, "b": 2] let dict2 = ["b": 3, "c": 4] // Fill in code here
