leetcode 46 全排列

Python内置的全排列函数

class Solution(object):
    def permute(self, nums):
        """
        :type nums: List[int]
        :rtype: List[List[int]]
        """
        from itertools import permutations
        return list(permutations(nums))

 

posted on 2019-05-11 11:07  小明明明不是企鹅  阅读(113)  评论(0编辑  收藏  举报