Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The Most Frequent by ssk8
def most_frequent(data: list) -> str:
count_list = [data.count(char) for char in data]
return data[count_list.index(max(count_list))]
June 19, 2018