2020年12月31日

摘要: 地址 https://leetcode-cn.com/problems/combinations/ 给定两个整数 n 和 k,返回 1 ... n 中所有可能的 k 个数的组合。 示例: 输入: n = 4, k = 2 输出: [ [2,4], [3,4], [2,3], [1,2], [1,3] 阅读全文
posted @ 2020-12-31 20:49 itdef 阅读(108) 评论(0) 推荐(0) 编辑

导航