Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Just Use A Counter solution in Clear category for Most Wanted Letter by veky
import collections
def most_wanted(text):
count = collections.Counter(filter(str.isalpha, text.casefold()))
return [char for char, freq in count.items() if freq == max(count.values())]
Aug. 16, 2018
Comments: