Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Monkey Typing by vit.aborigen
def count_words(text: str, words: set) -> int:
return sum([1 for word in words if word in text.lower()])
Nov. 12, 2018