[LeetCode] #49. Group Anagrams (python)
문제 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 애너그램 : 문자를 재배치해서 단어나 문구가 나오게 하는 것 같은 문자로 구성된 단어들끼리 묶어서 반환하면 된다. 예시 입출력 Input: strs = ["eat","tea","tan","ate","nat","bat"] Output: [["bat"],["nat","tan"],["ate","eat","..
2022. 2. 20.