时间复杂度:O(kn) 空间复杂度: O(n) function GetLeastNumbers_Solution(input, k) { // write code here if (k >= input.length) return input const result = [] ...