summaryrefslogtreecommitdiff
path: root/progs/a836.py
blob: 319fd86b013fdfe8b777016d50803bb4e16f8cb1 (plain)
1
2
3
def tuple_intersection(test_list1, test_list2):
  res = set([tuple(sorted(ele)) for ele in test_list1]) & set([tuple(sorted(ele)) for ele in test_list2])
  return (res)