Given a list with duplicates [1, 2, 2, 3, 3, 3, 4], build a set containing only the unique values. Print the set and its length.
Expected output:
Unique values: {1, 2, 3, 4}
Count: 4
You can create the set directly from the list. Sets automatically remove duplicates.