(8, 8), (8, 8), (8, 8), (8, 8), (8, 8)
(6, 7), (7, 7), (7, 7), (7, 6), (6, 7)
(2, 12), (12, 3), (3, 4), (4, 12), (12, 12)
```
new_col = []
for e in content.Pairs:
new_col.append(list(dict.fromkeys(e)))
content['Unique'] = new_col
```
(8, 8),(6, 7),(7, 6),(7, 7),(2, 12) so on
['8', '']
['6', '7', '']
['2', '12', '3', '4', '']