You are viewing a single comment's thread. Return to all comments →
here is my Python solution
def countingSort(arr): freq=[0]*100 s_arr=[] for i in arr: freq[i]+=1 for i in range(len(freq)): num=[i]*freq[i] s_arr.extend(num) return s_arr
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Counting Sort 2
You are viewing a single comment's thread. Return to all comments →
here is my Python solution