Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Monkey Typing by l.szyman10
def count_words(text: str, words: set) -> int:
return sum([i in text.lower() for i in words])
July 23, 2020
Comments: