Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
The Most Frequent by sorted() solution in Clear category for The Most Frequent by pavlo.ok
def most_frequent(data):
"""
determines the most frequently occurring string in the sequence.
"""
res = sorted(data, key=lambda x: data.count(x), reverse=True)
return res[0] if res else None
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')
Dec. 2, 2017