Find the x smallest integers in a list of length n

前端 未结 12 1708
时光取名叫无心
时光取名叫无心 2021-02-02 01:00

You have a list of n integers and you want the x smallest. For example,

x_smallest([1, 2, 5, 4, 3], 3) should return [1, 2, 3].

I\'ll v

12条回答
  •  有刺的猬
    2021-02-02 01:25

    sort array
    slice array 0 x
    

    Choose the best sort algorithm and you're done: http://en.wikipedia.org/wiki/Sorting_algorithm#Comparison_of_algorithms

提交回复
热议问题