Counting Sort 2

  • + 0 comments

    function countingSort(arr) { return arr.sort((a,b)=>a-b);

    }