You are viewing a single comment's thread. Return to all comments →
Pyhton3 solution
def migratoryBirds(arr): # Write your code here temp = [0]*len(arr) for i in arr: temp[i] += 1 return temp.index(max(temp))
Seems like cookies are disabled on this browser, please enable them to open this website
Migratory Birds
You are viewing a single comment's thread. Return to all comments →
Pyhton3 solution