Counting Sort 1

  • + 0 comments

    def countingSort(arr): count_arr = [0]*100 for i in arr: count_arr[i] +=1 return count_arr