Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Popular Words by tasneem.noori
def popular_words(text: str, words: list) -> dict:
text_words = text.lower().split()
return {word: text_words.count(word.lower()) for word in words}
Nov. 4, 2025
Comments: