Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
meatball133 committed Dec 29, 2022
1 parent 3a5f8ad commit da0630a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
8 changes: 8 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,14 @@
"prerequisites": ["bools", "loops", "conditionals", "numbers"],
"status": "beta"
},
{
"slug": "ice-cream-stand",
"name": "Ice Cream Stand",
"uuid": "121388ab-d86c-498d-928c-1fe536583e97",
"concepts": ["itertools"],
"prerequisites": ["tuples"],
"status": "beta"
},
{
"slug": "inventory-management",
"name": "Inventory Management",
Expand Down
10 changes: 0 additions & 10 deletions exercises/concept/ice-cream-stand/.meta/exemplar.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,4 @@ def fill_out_ice_cream_menu(flavors, toping, sprinkles):
"""
return list(itertools.zip_longest(flavors, toping, sprinkles, fillvalue="None"))


#def product(route, more_route_information):
"""Extend route information with more_route_information.
:param route: dict - the route information.
:param more_route_information: dict - extra route information.
:return: dict - extended route information.
"""

itertools.product(route, more_route_information)

0 comments on commit da0630a

Please sign in to comment.