• + 0 comments
    def migratoryBirds(arr):
        types = Counter(arr) 
        return (max(types, key=types.get))