Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One string (True+True =2) solution in Clear category for Monkey Typing by RomanTT
def count_words(text: str, words: set) -> int:
return sum(i in text.lower() for i in words)
Oct. 9, 2018
Comments: