I have two sets in a list which is followed,
set_list= [{224, 3, 138, 17, 222, 223}, {226, 3, 46, 17, 222, 223}]
I want to apply intersection operation on this list and the output should be like this:
set_list= [3,17,222,223]
I have two sets in a list which is followed,
set_list= [{224, 3, 138, 17, 222, 223}, {226, 3, 46, 17, 222, 223}]
I want to apply intersection operation on this list and the output should be like this:
set_list= [3,17,222,223]