How to get all subsets of a set? (powerset)

前端 未结 28 2937
庸人自扰
庸人自扰 2020-11-22 05:18

Given a set

{0, 1, 2, 3}

How can I produce the subsets:

[set(),
 {0},
 {1},
 {2},
 {3},
 {0, 1},
 {0, 2},
 {0, 3},
 {1, 2}         


        
28条回答
  •  夕颜
    夕颜 (楼主)
    2020-11-22 05:54

    def powerset(some_set):
        res = [(a,b) for a in some_set for b in some_set]
        return res
    

提交回复
热议问题