Question: 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
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') 3 >>> count_common_occurrences('bobbette z', 'bob y') 4 ''' Looking for a solution in python
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
