Complete the Python solution
Drag tokens into the blanks
1def isAnagram(s, t):2if len(s) != len(t):3 return ___4count = {}5for c in s:6 count[c] = count.get(c, 0) + ___7for c in t:8count[c] = count.get(c, 0) - 19 if count[c] < ___:10return False11return True