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

没有重复项数字的全排列

https://www.nowcoder.com/practice/4bcf3081067a4d028f95acee3ddcd2b1

#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 
# @param num int整型一维数组 
# @return int整型二维数组
#
class Solution:
    def ser(self,has,left):
        if len(left)==0:
            return has
        alllist= []
        for i in range(len(left)):
            newleft = left[:i] + left[i+1:]
            thislist = self.ser(has+[left[i]], newleft)
            if len(left)==1:
                alllist.append(thislist)
            else:
                alllist+=thislist
        print(alllist)
        return alllist
        
    def permute(self , num: List[int]) -> List[List[int]]:
        # write code here
        alllist = self.ser([],num)
        return sorted(alllist)

全部评论

相关推荐

点赞 评论 收藏
分享
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
06-20 20:30
工作没了,落户没了,什么都没了
梦想是成为七海千秋:是因为什么原因呀,如果是因为导师恶意卡你就和他爆了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务