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