x = { "123456" : {2017-04-16': {'2298': 'yes','578' : 'no'}} }
y = { "123456" : {2017-04-16': {'38': 'yes'}}}
expected_output = {"123456" : {'2017-04-16': {'2298': 'yes','38' :'yes','578' : 'no'}}}
How to do above operation efficiently??
I have to perform 100M+ such operation for 1000's of feilds
I tried navigating into dictionary and combining them, but it takes time which is not acceptable