Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for The Most Frequent by MKaa01
def most_frequent(data):
najwieksze_wystapienie=0
zm=""
for i in data:
if data.count(i)>najwieksze_wystapienie:
najwieksze_wystapienie=data.count(i)
zm=i
"""
determines the most frequently occurring string in the sequence.
"""
# your code here
return zm
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')
Nov. 18, 2017