Check whether every element of one list appears in another list.
Constraints
Example
['>>> is_subset([1, 2], [1, 2, 3])', 'True', '>>> is_subset([1, 2, 2], [1, 2])', 'True', '>>> is_subset([3], [1, 2])', 'False', '>>> is_subset([], [1, 2])', 'True']
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints