permutations
permutations.py 源码
from typing import List
# 全排列
class Solution:
def permute(self, nums: List[int]) -> List[List[int]]:
res = []
self.helper(nums, [], res)
return res
def helper(self, nums, data, res):
if len(data) == len(nums):
res.append(data[:])
return
for n in nums:
if n not in data:
data.append(n)
self.helper(nums, data, res)
data.pop()
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦