728x90
class Solution:
def isAnagram(self, s: str, t: str) -> bool:
def get_dict(word):
res = {}
for c in word:
if c in res:
res[c] += 1
else:
res[c] = 1
return sorted(res.items())
sd = get_dict(s)
td = get_dict(t)
return sd == td
dict를 sort 하려면 sorted 안에 dict.items()를 넣어주면 된다.
아래 처럼 key를 사용해서 key, value 순으로 sort가능하다.
728x90
'Leetcode' 카테고리의 다른 글
[LeetCode] Add Digits 파이썬 (0) | 2021.04.11 |
---|---|
[LeetCode] Binary Tree Paths 파이썬 (Binary Tree, LCA, DFS) (0) | 2021.04.07 |
[LeetCode] Delete Node in a Linked List 파이썬 (linked list) (0) | 2021.04.07 |
[LeetCode] Lowest Common Ancestor 파이썬 (tree) (0) | 2021.04.07 |
[LeetCode] Palindrome Linked List 파이썬 (0) | 2021.04.06 |
댓글