function GetLeastNumbers_Solution(input, k){ // write code here if(k===0){ return [] } let res = input.slice(0,k) let maxIndex = res.indexOf(Math.max(...res)) for(let i=k;i<input.length;i++){ if(input[i]<res[maxIndex]){ res.splice(maxIndex,1,input[i]) maxIndex ...