각 단어의 개수를 세어 서로 같은지 비교했다.
class Solution: def isAnagram(self, s, t): if Counter(s) == Counter(t): return True return False