Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-line code solution in Clear category for Monkey Typing by Nice_Kot
def count_words(text: str, words: set) -> int:
return sum(word in text.lower() for word in words)
Jan. 14, 2021