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
- transformer
- machinelearning
- 파이썬
- 프로그래머스
- LeetCode
- Programmers
- 머신러닝
- NLP
- 프롬프트
- prompt engineering
- attention
- dl
- LLM
- deque
- BFS
- Linear Model
- Django
- rnn
- 일기
- Deeplearning
- 기계학습
- ChatGPT
- gradient descent
- Python
- 코딩테스트
- 알고리즘
- GPT
- Linear Regression
- 부스트캠프
- 코테
Archives
- Today
- Total
크크루쿠쿠
[Leetcode] 49. Group Anagrams 본문
https://leetcode.com/problems/group-anagrams/
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.
Anagram을 판별하는 가장 간단한 방법
-> 단어 자체를 정렬해서 확인하는것.
sorted 함수를 이용한다 ( 문자열도 바로 정렬해줌)
ex) "ate","eta","tea" -> "aet",
"nat","tan","nta" -> "ant"
class Solution:
def groupAnagrams(self, strs: List[str]) -> List[List[str]]:
#classify anagrams
anagrams=collections.defaultdict(list)
#for each strs to anagrams
for word in strs:
anagrams[''.join(sorted(word))].append(word)
#return values of anagrams
return list(anagrams.values())
'알고리즘' 카테고리의 다른 글
[프로그래머스] 행렬 테두리 회전하기 파이썬 (0) | 2021.06.23 |
---|---|
[프로그래머스] 삼각 달팽이 파이썬 (0) | 2021.06.19 |
[프로그래머스] 후보키 파이썬 (2019 KAKAO BLIND RECRUITMENT) (0) | 2021.05.29 |
[Leetcode] Two Sum 파이썬 (0) | 2021.05.21 |
[프로그래머스] 소수 찾기 파이썬 (0) | 2021.05.17 |
Comments