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