Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
The Most Frequent solution in Clear category for The Most Frequent by wojtask98
def most_frequent(data):
"""
determines the most frequently occurring string in the sequence.
"""
# your code here
elements = {}
high = (data[0],1)
for element in data:
try:
elements[element] += 1
if elements[element] > high[1]:
high = (element, elements[element])
except:
elements[element] = 1
return high[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')
Dec. 1, 2017
Comments: