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 shurianov
def most_frequent(data: list) -> str:
"""
determines the most frequently occurring string in the sequence.
"""
m=0
for i in range(len(data)):
if data.count(data[i])>m:
m=data.count(data[i])
n=data[i]
return n
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")
Jan. 6, 2022
Comments: