Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Monkey Typing by thealfest1
def count_words(text: str, words: set) -> int:
return sum(1 for word in words if word in text.lower())
March 18, 2019
Comments: