leetcode#242 Valid Anagram

정은경·2022년 6월 26일
0

알고리즘

목록 보기
105/125

1. 문제

2. 나의 풀이

class Solution:
    def getCountDict(self, string) -> dict:
        s_chars = list(set(string))
        
        count_dict = {}
        for c in string:
            if c in count_dict:
                count_dict[c] += 1
            else:
                count_dict[c] = 1
        
        return count_dict
        
    def isAnagram(self, s: str, t: str) -> bool:
        if self.getCountDict(s) == self.getCountDict(t):
            return True
        return False
profile
#의식의흐름 #순간순간 #생각의스냅샷

0개의 댓글