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 trial

Python Python Collections (2016, retired 2019) Sets Set Math

Matt Wolf
Matt Wolf
2,225 Points

This is totally working for me, not sure why Treehouse says it's wrong.

Works when I run it

sets.py
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(setoftopics):
    finalset = set({})
    for key in COURSES.keys():
        if setoftopics <= COURSES[key]:
            finalset.add(key)
    return list(finalset)

1 Answer

Stuart Wright
Stuart Wright
41,118 Points

I don't know what <= means in the context of sets, but when I replace it with the symbol for set intersection (&), the code passes for me:

def covers(setoftopics):
    finalset = set({})
    for key in COURSES.keys():
        if setoftopics & COURSES[key]:
            finalset.add(key)
    return list(finalset)
Matt Wolf
Matt Wolf
2,225 Points

Thanks Stuart. <= means subset but I'll make the change. I think it should be correct, but anyway...

Stuart Wright
Stuart Wright
41,118 Points

Ah good to know about subset, hadn't used that before.

The instructions say:

"Have the function return a list of courses from COURSES where the supplied set and the course's value (also a set) overlap."

So I think the reason it doesn't pass is that the challenge wants you to return keys where either set is a subset of the other, rather than only where the input set is a subset of the COURSES set.

Stuart Wright
Stuart Wright
41,118 Points

On second thoughts, two sets can still overlap with neither being a subset of the other. For example:

{1, 2} {2, 3}