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

77. Combinations

时间:2018-11-05 16:22:34      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:pre   nat   tools   example   ati   bin   ons   solution   com   

Given two integers n and k, return all possible combinations of k numbers out of 1 ... n.

Example:

Input: n = 4, k = 2
Output:
[
[2,4],
[3,4],
[2,3],
[1,2],
[1,3],
[1,4],]

import itertools
class Solution:
    def combine(self, n, k):
        """
        :type n: int
        :type k: int
        :rtype: List[List[int]]
        """
        return [list(j) for j in list(itertools.combinations([i for i in range(1,n+1)],k))]

77. Combinations

标签:pre   nat   tools   example   ati   bin   ons   solution   com   

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

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