Question: Python Sets & Bit Strings Create a function setToBit whose inputs are an integer n and a subset AS[1, 2, 3, ..., n] (so n

Python Sets & Bit Strings Create a function "setToBit" whose inputs are an integer n and a subset AS[1, 2, 3, ..., n] (so n is the cardinality of the larger set that A is a subset of). The function will return an n-bit string that corresponds to the subset A. For instance, if n = 8 and A = [2, 3, 5, 7], then your function will return the 8-bit string [0, 1, 1, 0, 1, 0, 1, 0] (note that the 1's are in positions 2, 3, 5, and 7, which correspond to the elements of A). one-line comments (using the single line comments with #) written in complete sentences that describe what each line of code does
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
