leetcode77 Combinations-zh
# 77. 组合 (opens new window)
English Version (opens new window)
# 题目描述
给定两个整数 n 和 k,返回 1 ... n 中所有可能的 k 个数的组合。
示例:
输入: n = 4, k = 2 输出: [ [2,4], [3,4], [2,3], [1,2], [1,3], [1,4], ]
# 解法
# Python3
1
# Java
1
# ...
1
编辑 (opens new window)
上次更新: 2021/10/30, 12:58:38