"""Exercise 5.8.1 — Unique colors

Chapter 5: Data Structures — Everyday Programming

A set removes duplicates. The program should print how many unique
colors there are: 3.

This program contains exactly one bug. Solution: sol_5_8_1.py
"""

colors = ["red", "blue", "red", "green"]
print(len(colors))   # 3
