Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Igor Dias
5,155 PointsMy code output is correct but I'm not able to complete the task
The covers_all(): function should compare a given set with a dict and return a list with the keys if the dict[key] contains all the set values.
COURSES = { "Python Basics": {"Python", "functions", "variables", "booleans", "integers", "floats", "arrays", "strings", "exceptions", "conditions", "input", "loops"}, "Java Basics": {"Java", "strings", "variables", "input", "exceptions", "integers", "booleans", "loops"}, "PHP Basics": {"PHP", "variables", "conditions", "integers", "floats", "strings", "booleans", "HTML"}, "Ruby Basics": {"Ruby", "strings", "floats", "integers", "conditions", "functions", "input"} }
Function input >>>> covers_all( {'variables','inputs')
Function output >>>> ['Python Basics', 'Java Basics']
COURSES = {
"Python Basics": {"Python", "functions", "variables",
"booleans", "integers", "floats",
"arrays", "strings", "exceptions",
"conditions", "input", "loops"},
"Java Basics": {"Java", "strings", "variables",
"input", "exceptions", "integers",
"booleans", "loops"},
"PHP Basics": {"PHP", "variables", "conditions",
"integers", "floats", "strings",
"booleans", "HTML"},
"Ruby Basics": {"Ruby", "strings", "floats",
"integers", "conditions",
"functions", "input"}
}
def covers(set_1):
lista = []
for item in set_1:
for key in COURSES.keys():
if item in COURSES[key]:
lista.append(key)
continue
lista = set(lista)
lista = list(lista)
return lista
def covers_all(set_2):
lista = []
aux = {}
for key in COURSES.keys():
aux = set_2 & COURSES[key]
if len(aux) == len(set_2):
lista.append(key)
return lista
1 Answer

Kirsten Smith
3,484 PointsThis code passed all tasks for me, try restarting your browser and seeing if that works!