subject

Sometimes we want only the k-subsets of s – that is, the subsets with cardinality k. for example, consider a pizza joint that offers 16 different toppings. call this set of 16 toppings t. the power set p(t) represents all possible combinations of toppings; there are 216 = 65,536 combinations. a customer who wants a 3-topping pizza would be interested in only the 3-subsets of t; it turns out that there are only 560 such subsets. (later in the course, we’ll discuss how to compute the count of k-subsets without actually finding the subsets! )
so how do we find all the k-subsets of a set s? one obvious way is to start by finding p(s), which gives us all possible subsets. then we can just iterate through all the subsets and include only those with a cardinality of k.
write a python function k subsets naive(s, k) that calls your previously written power set function to return a set containing all the k-subsets of s. again, represent the sets using python lists. for example, calling k subsets naive([4, 5, 6], 2) should return something like [[4, 5], [4, 6], [5, 6]]. if k is not valid (i. e., negative, or greater than |s|), this function should return the empty list, [].

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 07:30
What is the original authority for copyright laws
Answers: 1
question
Computers and Technology, 23.06.2019 23:00
How do you know if the website is secure if you make a purchase
Answers: 2
question
Computers and Technology, 24.06.2019 00:30
Asecurity policy is a a. set of guidlines b. set of transmission protocols c. written document d. set of rules based on standards and guidelines
Answers: 2
question
Computers and Technology, 24.06.2019 01:00
What shows the web address of the page that is currently displayed in the workspace? status window toolbar location bar internet box
Answers: 1
You know the right answer?
Sometimes we want only the k-subsets of s – that is, the subsets with cardinality k. for example, co...
Questions
question
Mathematics, 17.06.2020 19:57
question
Mathematics, 17.06.2020 19:57
question
Mathematics, 17.06.2020 19:57
question
Mathematics, 17.06.2020 19:57
question
English, 17.06.2020 19:57
question
Mathematics, 17.06.2020 19:57
Questions on the website: 13722363