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

46. Permutations

时间:2018-09-30 20:42:09      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:itertools   collect   put   self   solution   output   col   def   tools   

Given a collection of distinct integers, return all possible permutations.

Example:

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

import itertools
class Solution:
    def permute(self, nums):
        """
        :type nums: List[int]
        :rtype: List[List[int]]
        """
        l = list(itertools.permutations(nums,len(nums)))
        return l

46. Permutations

标签:itertools   collect   put   self   solution   output   col   def   tools   

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

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