-
Notifications
You must be signed in to change notification settings - Fork 20
/
Subsets.py
46 lines (39 loc) · 831 Bytes
/
Subsets.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- coding: UTF-8 -*-
#
# Given a set of distinct integers, nums, return all possible subsets (the power set).
#
# Note: The solution set must not contain duplicate subsets.
#
# For example,
# If nums = [1,2,3], a solution is:
#
# [
# [3],
# [1],
# [2],
# [1,2,3],
# [1,3],
# [2,3],
# [1,2],
# []
# ]
#
# Python, Python 3 all accepted.
class Subsets:
def subsets(self, nums):
"""
:type nums: List[int]
:rtype: List[List[int]]
"""
results = [[]]
if nums is None or len(nums) == 0:
return results
sorted(nums)
for i in nums:
size = len(results)
for j in range(size):
tmp = []
tmp.extend(results[j])
tmp.append(i)
results.append(tmp)
return results