Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Short solution in Clear category for Monkey Typing by U.V
def count_words(text: str, words: set) -> int:
return sum(w.lower() in text.lower() for w in sorted(words, key=lambda x: len(x)))
Aug. 31, 2022
Comments: