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 trialDmitry Bruhanov
8,513 PointsPython collections - sets
I tried this code in a separate online consile. It returns the required result. However, the challenge keeps returning the Bummer! and Try again! Any ideas what is wrong with my code? What am I missing? Thanks in advance!
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(topics):
key = None
for key in COURSES.keys():
if topics & set(key.split()):
return [key]
2 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsYou are headed in the right direction.
The phrase set(key.split())
creates a set from the key. This yields the sets {"Python", "Basics"}, {"Java", "Basics"}, etc. These will not properly compare with the submitted topics
.
Instead, you can compare the value retrieved with the key:
if topics & COURSES[key]:
The code needs to return a list of all courses that intersect with topics
Add a blank list that can be appended to when an intersection is found. Then return that list after the for loop
Post back if you need more help. Good luck!!
Dmitry Bruhanov
8,513 PointsThank you, I got it done:
def covers(topics):
topiclist = []
for key in COURSES.keys():
for value in COURSES[key]:
if value in topics:
topiclist.append(key)
return topiclist