def commonCount (stringA, stringB):
   # initialize count
   # for each letter in the first word
   #   match it up with a letter in the second word
   #     1) use the Python operator ‘in’
   #     2) for each letter in the second word
   #            if first letter == second letter
   #     when match found, add 1 to count
   # return count
