["burger", "coke"] and ["coke", "burger"] are the same combo. Write count_unique_combos(orders) that counts distinct combos. A plain set cannot be stored inside another set — pick the right hashable type.count_unique_combos([['burger', 'coke'], ['coke', 'burger'], ['pizza']])
2
The first two orders are the same combo regardless of order.
frozenset is hashable and order-free.
Build a set of frozensets and return its length.