I have a list of list of dictionaries and I want to find the common dictionaries between the two list.
Eg:
dict_list = [[{'1' : 1,'2' : 2, '3' :3}, {'6' : 6,'5' : 5, '4' : 4}],
[{'1' : 1,'2' : 2, '3' :3}, {'7' : 7,'8' : 8, '9' : 9}]]
The result should be [{'1' : 1,'2' : 2, '3' :3}]
I tried using set intersections but dictionaries are unhashable in python.
How to solve this?