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 |
Tags
- EC2
- Kubernetes
- dockerfile
- RBAC
- 자바스크립트
- IAM
- Deployment
- IAC
- elasticsearch
- EKS
- AZURE
- AZ-900
- ansible
- Python
- asyncio
- AWS
- FastAPI
- POD
- Django
- leetcode
- terraform
- docker
- AZ-104
- asgi
- ebs
- DevOps
- Network
- K8S
- Service
- Role
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