Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Popular Words by kazuki.h
def popular_words(text: str, words: list) -> dict:
return {word: text.lower().split().count(word) for word in words}
April 3, 2021
Comments: