summaryrefslogtreecommitdiff
path: root/progs/a41.py
blob: fc3c61b02332612b01af3dd0a6b779aad5cd2369 (plain)
1
2
3
def remove_similar_row(test_list):
  res = set(sorted([tuple(sorted(set(sub))) for sub in test_list]))
  return (res)