Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Monkey Typing by 24esun
def count_words(text, words):
return len([char for char in words if char in text.lower()])
Sept. 5, 2021