Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a Python function check_subset() that takes in two Python lists, representing sets of integers, AA and BB. Your function should return a single Boolean
Write a Python function check_subset() that takes in two Python lists, representing sets of integers, AA and BB. Your function should return a single Boolean (True or False) for whether or not either set is a subset of the other. AA and BB are sets, and not necessarily non-empty.
For example:
Test | Result |
---|---|
A = [0, 2, 10, -5] B = [-5, 10] print(check_subset(A, B)) | True |
A = [0, 2, 4, 6] B = [1] print(check_subset(A, B)) | False |
A = [] B = [1,2,3] print(check_subset(A, B)) | True |
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started