Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
sorted solution in Clear category for The Most Frequent by Orthomonalus
def most_frequent(data: list[str]) -> str:
# your code here
most_common = sorted(data, key=lambda x: data.count(x), reverse=True)
return most_common[0]
print("Example:")
print(most_frequent(["a", "b", "c", "a", "b", "a"]))
# These "asserts" are used for self-checking
assert most_frequent(["a", "b", "c", "a", "b", "a"]) == "a"
assert most_frequent(["a", "a", "bi", "bi", "bi"]) == "bi"
print("The mission is done! Click 'Check Solution' to earn rewards!")
Oct. 27, 2024
Comments: