Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simply use, that True==1 and False==0 solution in Clear category for Monkey Typing by new_hoschi
def count_words(text: str, words: set) -> int:
return sum([word in text.lower() for word in words])
May 18, 2020