1. 문제 https://leetcode.com/problems/group-anagrams/ Group Anagrams - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 2. 접근 방법 딕셔너리를 사용해서 애너그램 단위로 묶어줍니당 3. 코드 Python3 class Solution: def groupAnagrams(self, strs: List[str]) -> List[List[str]]: anagrams = dict() for s in strs: sort_s..
[LeetCode] 49. Group Anagrams