剑指offer面试题【40】----最小的k个数【排序】【Python】

题目描述

输入n个整数,找出其中最小的K个数。例如输入4,5,1,6,2,7,3,8这8个数字,则最小的4个数字是1,2,3,4,。

代码实现

# -*- coding:utf-8 -*-
class Solution:
    def GetLeastNumbers_Solution(self, tinput, k):
        # write code here
        if k>len(tinput) or tinput==[]:
            return []
        res=sorted(tinput)
        return res[:k]

 

你可能感兴趣的:(python基础,剑指offer)