This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Generate all subsets of a set using recursion | |
""" | |
def subsets1(S): | |
if S == []: | |
return [[]] | |
result = [[]] | |
n = len(S) | |
visited = [False] * n |