bababaoy solution in Clear category for The Most Frequent by viktor.chyrkin
def most_frequent(data): return max(data, key=data.count)
Dec. 25, 2021