Question: Please do not use dictionaries. and Python only please. Thanks so much. comment if possible def count_common_occurrences(word1, word2): (str, str)-int Given two strings, word1 and

Please do not use dictionaries. and Python only please. Thanks so much. comment if possible
def count_common_occurrences(word1, word2): (str, str)-int Given two strings, word1 and word2, return how many characters in word1 are letters that also occur in word2. You can assume all characters in the given string are lowercase. Also, spaces do not count as a common character. Algorithm Go through each character in word1, one by one. If this character occurs in word2, then add 1 to the count. Return total count after you're done going through the characters >>>count common occurrences('bob y', "bobbette z' countcommon.occurrencesC bobbette z', bob y) 4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
