题解 | #没有重复项数字的全排列#
没有重复项数字的全排列
https://www.nowcoder.com/practice/4bcf3081067a4d028f95acee3ddcd2b1
#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
#
# @param num int整型一维数组
# @return int整型二维数组
#
class Solution:
def permute(self , num: List[int]) -> List[List[int]]:
# write code here
import copy
length = len(num)
ans = []
tmp = []
def all_seq(seq):
for i in range(len(seq)):
res = seq.pop(i)
tmp.append(res)
all_seq(seq)
seq.insert(i, res)
tmp.pop(-1)
if len(tmp)==length:
ans.append(copy.deepcopy(tmp))
all_seq(num)
return ans
腾讯云智研发成长空间 313人发布