본문 바로가기

Leetcode 100문제 도전

[Leetcode 28/100] Group Anagrams - Medium

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

문제 풀이 방식

Anagrams의 특징인 정렬했을 때 동일한 문자열을 얻는 것을 활용

map의 value 값을 리스트로 설정하여 코드를 간소화할 수 있었다.

주의할 점

이전부터 지속된 문제점이지만 코드를 작성하기 전 명확한 설계가 필요하다.

소스코드