• + 0 comments
    from collections import Counter
    
    def migratoryBirds(arr):
        return Counter(sorted(arr)).most_common(1)[0][0]