Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-liner solution in Clear category for Monkey Typing by obone
def count_words(text: str, words: set) -> int:
return sum(w in text.lower() for w in words)
Aug. 18, 2019
Comments: