function GetLeastNumbers_Solution(input, k) { // write code here let arr = input arr.sort((a,b)=>{ return a-b }) if(k>arr.length) return [] &nb...