Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialIgor 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!