Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
collections.Counter solution in Clear category for The Most Frequent by kurosawa4434
from collections import Counter
def most_frequent(data):
return sorted(Counter(data).items(), key=lambda x:x[1])[-1][0]
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert most_frequent([
'a', 'b', 'c',
'a', 'b',
'a'
]) == 'a'
assert most_frequent(['a', 'a', 'bi', 'bi', 'bi']) == 'bi'
print('Done')
Oct. 11, 2017