250x250
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
- javascript
- scanner
- NIO
- math
- 리소스모니터링
- map
- sql
- spring boot
- JPA
- union_find
- 스프링부트
- alter
- List
- priority_queue
- BFS
- Java
- Properties
- 큐
- dfs
- Calendar
- 스택
- string
- html
- CSS
- deque
- set
- Union-find
- date
- 힙덤프
- GC로그수집
Archives
- Today
- Total
목록2024/10/27 (2)
매일 조금씩
Leet code (Easy): 20. Valid Parentheses (Stack) - Java
Stack 사용하면 됨! class Solution { public boolean isValid(String s) { Stack stack = new Stack(); for(int i = 0; i
알고리즘/String
2024. 10. 27. 17:20
Leet code (Medium): 49. Group Anagrams - Java
anagram 문제는 char[]로 만들어서 알파벳순으로 재정렬한 후, 찾는 것이 핵심이다.여기선 HashMap을 사용해서 재정렬된 단어를 키로 해서 그단어의 anagram인 것들을 value에 넣는 방법을 사용했다. class Solution { public List> groupAnagrams(String[] strs) { Map> map = new HashMap(); for(String word : strs){ // 단어를 알파벳순으로 재정렬 char[] chars = word.toCharArray(); Arrays.sort(chars); String sorted = new String(ch..
알고리즘/String
2024. 10. 27. 17:01