반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- python
- react
- 리액트
- 고득점Kit
- sql
- Level3
- CS
- 프로그래밍
- Level1
- 동적계획법
- 리트코드
- LeetCode
- 자바스크립트
- web
- C++
- 백준
- OS
- dp
- VUE
- 파이썬
- Medium
- 카카오
- javascript
- Level2
- 웹프로그래밍
- Doitvue.js입문
- 코테연습
- typescript
- 프로그래머스
- 배열
Archives
- Today
- Total
[리트코드] 49. Group Anagrams - python 본문
반응형
49. Group Anagrams
문제
Given an array of strings strs, group the anagrams together. You can return the answer in any order.
An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.
제한사항
- 1 <= strs.length <= 104
- 0 <= strs[i].length <= 100
- strs[i] consists of lowercase English letters.
풀이
정렬해서 키 값을 만든 다음 원래 문자열을 해시맵에 해당 키의 value로 저장한다.
해시맵에 values를 리턴하면된다.
class Solution:
def groupAnagrams(self, strs: List[str]) -> List[List[str]]:
keys = [''.join(sorted(a)) for a in strs]
hash_map = {}
for i, key in enumerate(keys):
hash_map.setdefault(key, [])
hash_map[key].append(strs[i])
return hash_map.values()
반응형
'코테 문제 풀이' 카테고리의 다른 글
[리트코드] 680. Valid Palindrome II - python (0) | 2022.04.13 |
---|---|
[리트코드] 125. Valid Palindrome - python (0) | 2022.04.13 |
[리트코드] 3. Longest Substring Without Repeating Characters (0) | 2022.04.13 |
[리트코드] 415. Add Strings - python (0) | 2022.04.12 |
[프로그래머스] 큰 수 만들기 - python (0) | 2022.04.12 |
Comments