Question: Write a Python function check_subset() that takes in two Python lists, representing sets of integers, A and B. Your function should return a single Boolean

Write a Python function check_subset() that takes in two Python lists, representing sets of integers, A and B. Your function should return a single Boolean (True or False) for whether or not either set is a subset of the other. A and B are sets, and not necessarily non-empty. For example: Test Result True A = [0, 2, 10, -5] B = [-5, 10] print(check_subset(A, B)) A = [0, 2, 4, 6] B = [1] print(check_subset(A, B)) False True A = [] B = [1,2,3] print(check_subset(A, B))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
