Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second Popular Words solution in Clear category for Popular Words by Wakko_Warner
def popular_words(text: str, words: list) -> dict:
# your code here
return {word: text.lower().split().count(word) for word in words}
Nov. 26, 2020
Comments: