题解 | #最小的K个数#

最小的K个数

https://www.nowcoder.com/practice/6a296eb82cf844ca8539b57c23e6e9bf

func GetLeastNumbers_Solution( input []int ,  k int ) []int {
    // write code here
    sort.Ints(input)
    res := make([]int,k)
    for i:=0;i<len(input);i++{
        if i+1>k{
            break
        }
        res[i] = input[i]
    }
    return res
}
全部评论

相关推荐

牛客771574427号:恭喜你,华杰
点赞 评论 收藏
分享
伟大的烤冷面被普调:暨大✌🏻就是强
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务