码迷,mamicode.com
首页 > 其他好文 > 详细

47. Permutations II

时间:2018-10-14 13:49:43      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:type   int   nta   for   set   pre   too   cti   itertools   

Given a collection of numbers that might contain duplicates, return all possible unique permutations.

Example:

Input: [1,1,2]
Output:
[
[1,1,2],
[1,2,1],
[2,1,1]]

import itertools
class Solution:
    def permuteUnique(self, nums):
        """
        :type nums: List[int]
        :rtype: List[List[int]]
        """
        return [list(i) for i in set(itertools.permutations(nums))]

47. Permutations II

标签:type   int   nta   for   set   pre   too   cti   itertools   

原文地址:https://www.cnblogs.com/bernieloveslife/p/9783941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!