-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCater Waiter.py
108 lines (83 loc) · 4.62 KB
/
Cater Waiter.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
"""Functions for compiling dishes and ingredients for a catering company."""
from sets_categories_data import (VEGAN,
VEGETARIAN,
KETO,
PALEO,
OMNIVORE,
ALCOHOLS,
SPECIAL_INGREDIENTS)
def clean_ingredients(dish_name, dish_ingredients):
"""Remove duplicates from `dish_ingredients`.
:param dish_name: str - containing the dish name.
:param dish_ingredients: list - dish ingredients.
:return: tuple - containing (dish_name, ingredient set).
This function should return a `tuple` with the name of the dish as the first item,
followed by the de-duped `set` of ingredients as the second item.
"""
return dish_name, set(dish_ingredients)
def check_drinks(drink_name, drink_ingredients):
"""Append "Cocktail" (alcohol) or "Mocktail" (no alcohol) to `drink_name`, based on `drink_ingredients`.
:param drink_name: str - name of the drink.
:param drink_ingredients: list - ingredients in the drink.
:return: str - drink_name appended with "Mocktail" or "Cocktail".
The function should return the name of the drink followed by "Mocktail" (non-alcoholic) and drink
name followed by "Cocktail" (includes alcohol).
"""
if not len(ALCOHOLS.intersection(drink_ingredients)):
return drink_name + " Mocktail"
return drink_name + " Cocktail"
def categorize_dish(dish_name, dish_ingredients):
"""Categorize `dish_name` based on `dish_ingredients`.
:param dish_name: str - dish to be categorized.
:param dish_ingredients: list - ingredients for the dish.
:return: str - the dish name appended with ": <CATEGORY>".
This function should return a string with the `dish name: <CATEGORY>` (which meal category the dish belongs to).
`<CATEGORY>` can be any one of (VEGAN, VEGETARIAN, PALEO, KETO, or OMNIVORE).
All dishes will "fit" into one of the categories imported from `sets_categories_data.py`
"""
length = len(dish_ingredients)
for category, category_name in ((VEGAN,"VEGAN"), (VEGETARIAN,"VEGETARIAN"), (PALEO,"PALEO"), (KETO,"KETO"), (OMNIVORE, "OMNIVORE")):
if len(dish_ingredients.intersection(category)) == length:
return dish_name + f": {category_name}"
def tag_special_ingredients(dish):
"""Compare `dish` ingredients to `SPECIAL_INGREDIENTS`.
:param dish: tuple - of (dish name, list of dish ingredients).
:return: tuple - containing (dish name, dish special ingredients).
Return the dish name followed by the `set` of ingredients that require a special note on the dish description.
For the purposes of this exercise, all allergens or special ingredients that need to be tracked are in the
SPECIAL_INGREDIENTS constant imported from `sets_categories_data.py`.
"""
return dish[0], SPECIAL_INGREDIENTS.intersection(dish[1])
def compile_ingredients(dishes):
"""Create a master list of ingredients.
:param dishes: list - of dish ingredient sets.
:return: set - of ingredients compiled from `dishes`.
This function should return a `set` of all ingredients from all listed dishes.
"""
ingredients = set()
for dish in dishes:
ingredients |= dish
return ingredients
def separate_appetizers(dishes, appetizers):
"""Determine which `dishes` are designated `appetizers` and remove them.
:param dishes: list - of dish names.
:param appetizers: list - of appetizer names.
:return: list - of dish names that do not appear on appetizer list.
The function should return the list of dish names with appetizer names removed.
Either list could contain duplicates and may require de-duping.
"""
return set(dishes).difference(set(appetizers))
def singleton_ingredients(dishes, intersection):
"""Determine which `dishes` have a singleton ingredient (an ingredient that only appears once across dishes).
:param dishes: list - of ingredient sets.
:param intersection: constant - can be one of `<CATEGORY>_INTERSECTIONS` constants imported from `sets_categories_data.py`.
:return: set - containing singleton ingredients.
Each dish is represented by a `set` of its ingredients.
Each `<CATEGORY>_INTERSECTIONS` is an `intersection` of all dishes in the category. `<CATEGORY>` can be any one of:
(VEGAN, VEGETARIAN, PALEO, KETO, or OMNIVORE).
The function should return a `set` of ingredients that only appear in a single dish.
"""
result = set()
for dish in dishes:
result = result | (dish - intersection)
return result