在所有不同的组合数值中,第k小的组合数值是多少呢。给定一个k,返回第k小的组合数值。
示例1
输入
1
输出
1
说明
最小的的组合数是
示例2
输入
6
输出
6
说明
第6小的组合数为
加载中...
import java.util.*; public class Solution { /** * * @param k int整型 * @return int整型 */ public int kthSamllest (int k) { // write code here } }
class Solution { public: /** * * @param k int整型 * @return int整型 */ int kthSamllest(int k) { // write code here } };
# # # @param k int整型 # @return int整型 # class Solution: def kthSamllest(self , k ): # write code here
/** * * @param k int整型 * @return int整型 */ function kthSamllest( k ) { // write code here } module.exports = { kthSamllest : kthSamllest };
# # # @param k int整型 # @return int整型 # class Solution: def kthSamllest(self , k ): # write code here
package main /** * * @param k int整型 * @return int整型 */ func kthSamllest( k int ) int { // write code here }
/** * * @param k int整型 * @return int整型 */ int kthSamllest(int k ) { // write code here }
1
1
6
6