Start with a list [1, 2, 2, 3, 3, 3]. Convert it through these types and print each result:
List to set (removes duplicates)
Set to tuple (now immutable)
Tuple to list (back to mutable)
Observe how each conversion changes the representation while preserving the unique values.