Determine if every element of one set appears in another.
Constraints
Example
>>> is_subset({1, 2}, {1, 2, 3})
True
>>> is_subset({1, 4}, {1, 2, 3})
False
>>> is_subset(set(), {1, 2})
True
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints