Instruction
Perfect! One more question to go ...
Exercise
You are given a restaurant menu in the template code. This menu is stored in tuples; each tuple consists of a dish name and a list of its ingredients.
We want to find out how many unique ingredients are used in this restaurant. Write a function named count_unique_ingredients(dishes) that accepts a dictionary (as shown in the template code). This function should return the total number of unique ingredients from all the dishes in the list.



