首页
技术博客
登录
6mi
u
盘
搜
搜 索
技术博客
子集
子集
tech
2022-08-25
118
class
Solution
:
def
subsets
(
self
,
nums
:
List
[
int
]
)
-
>
List
[
List
[
int
]
]
:
res
=
[
[
]
]
for
i
in
nums
:
for
num
in
res
:
print
(
i
)
print
(
num
)
print
(
res
)
res
=
res
+
[
[
i
]
+
num
]
print
(
res
)
return
0
转载请注明原文地址:https://tech.qufami.com/read-3291.html
最新回复
(
0
)