Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
native_monkey_typing solution in Uncategorized category for Monkey Typing by Jon_Red
def count_words(text:str,words:set)->int:
return len({x for x in words for y in text.lower().split()if x in y})
June 13, 2020
Comments: