Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Knowing the libs saves a lot of work solution in Clear category for The Most Frequent by 01findus
import statistics #knowing the libs saves a lot of work
def most_frequent(data: list) -> str:
return statistics.mode(data) #knowing the libs saves a lot of work
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", "c", "c", "c"]))
#print (most_frequent(["a", "b", "c", "a", "b", "a"])) #== "a"
assert most_frequent(["a", "a", "bi", "bi", "bi"]) == "bi"
print("Done")
Jan. 15, 2022