Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Most Wanted Letter by bravebug
from collections import Counter
def most_wanted(text: str) -> str:
data = Counter(s for s in text.lower() if s.isalpha())
most_common = max(data.values())
return [key for key, value in data.items() if value == most_common]
Sept. 23, 2021