Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Monkey Typing by Albert.Nowak
def count_words(text, words):
text1=text.lower()
list=[]
list2=[]
for eachWord in words:
list.append(eachWord)
for eachElement in list:
if eachElement in text1:
list2.append(eachElement)
dl=len(list2)
return dl
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert count_words("How aresjfhdskfhskd you?", {"how", "are", "you", "hello"}) == 3, "Example"
assert count_words("Bananas, give me bananas!!!", {"banana", "bananas"}) == 2, "BANANAS!"
assert count_words("Lorem ipsum dolor sit amet, consectetuer adipiscing elit.",
{"sum", "hamlet", "infinity", "anything"}) == 1, "Weird text"
Dec. 14, 2015