Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Oneliner solution in Speedy category for Monkey Typing by ddavidse
def count_words(text: str, words: set) -> int:
return sum([text.lower().find(x) != -1 for x in words])
Nov. 24, 2020