Skip to content

Commit 83615ec

Browse files
committed
Removed nested bullet points in the problem description
1 parent f821d50 commit 83615ec

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

_sources/_hidden/mooc_nested_dict/puzzle_bank.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
Finish the function ``get_vegetarian_menu(menu_items):`` below:
6565
- It takes a list of tuples ``menu_items`` as input, each tuple contains ``(name, category, price, is_vegetarian)``.
6666
- It returns a new nested dictionary that only contains the items from ``menu_items`` where ``is_vegetarian`` is ``True``.
67-
- The outer dictionary keys are ``category`` such as "Soup", "Pizza", "Pasta", "Salad".
68-
- The inner dictionary keys are ``name`` and values are ``price`` for each vegetarian item of that ``category``.
67+
- The outer dictionary keys are ``category`` such as "Soup", "Pizza", "Pasta", "Salad".
68+
- The inner dictionary keys are ``name`` and values are ``price`` for each vegetarian item of that ``category``.
6969
-----
7070
def get_vegetarian_menu(menu_items):
7171
=====
@@ -92,8 +92,8 @@
9292
Finish the function ``get_vegetarian_menu(menu_items):`` below:
9393
- It takes a list of tuples ``menu_items`` as input, each tuple contains ``(name, category, price, is_vegetarian)``.
9494
- It returns a new nested dictionary that only contains the items from ``menu_items`` where ``is_vegetarian`` is ``True``.
95-
- The outer dictionary keys are ``category`` such as "Soup", "Pizza", "Pasta", "Salad".
96-
- The inner dictionary keys are ``name`` and values are ``price`` for each vegetarian item of that ``category``.
95+
- The outer dictionary keys are ``category`` such as "Soup", "Pizza", "Pasta", "Salad".
96+
- The inner dictionary keys are ``name`` and values are ``price`` for each vegetarian item of that ``category``.
9797
-----
9898
def get_order_totals(orders):
9999
=====

0 commit comments

Comments
 (0)