Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
collections.Counter solution in Clear category for Most Wanted Letter by Stensen
from collections import Counter
from re import findall
def most_wanted(text):
count = Counter(findall('[a-z]', text.lower())).most_common()
maxi = max([i for _, i in count])
return [i for i, j in count if j == maxi]
Sept. 30, 2020