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
- Network
- Deployment
- AZ-900
- dockerfile
- IAC
- 자바스크립트
- K8S
- ansible
- AZ-104
- AWS
- Kubernetes
- Python
- Role
- leetcode
- POD
- asgi
- IAM
- EC2
- ebs
- Django
- FastAPI
- terraform
- elasticsearch
- RBAC
- DevOps
- docker
- asyncio
- AZURE
- Service
- EKS
Archives
- Today
- Total
목록anagram (1)
궁금한게 많은 개발자 노트
[ leetcode ] 49. Group Anagrams
string의 배열이 들어왔을 때, anagram 단어들을 grouping하여 반환하는 문제입니다. 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 #include #include class Solution { public: vector groupAnagrams(vector& strs) { unordered_map hash_table; for (int i = 0; i < strs.size(); i++){ string temp = strs[i]; sort(temp.begin(), temp.end..
카테고리 없음
2023. 5. 2. 11:51