题解 | #没有重复项数字的全排列#

没有重复项数字的全排列

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

全部评论

相关推荐

点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务