Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The Most Frequent by elsuperdiscochino
def most_frequent(data: list) -> str:
"""
determines the most frequently occurring string in the sequence.
"""
the_most = 0
letter = ''
for dat in data:
if(data.count(dat) > the_most):
the_most = data.count(dat)
letter = dat
return letter
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
print('Example:')
print(most_frequent([
'a', 'b', 'c',
'a', 'b',
'a'
]))
assert most_frequent([
'a', 'b', 'c',
'a', 'b',
'a'
]) == 'a'
assert most_frequent(['a', 'a', 'bi', 'bi', 'bi']) == 'bi'
print('Done')
Dec. 14, 2018