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 |
Tags
- 큐
- string
- javascript
- GC로그수집
- 리소스모니터링
- NIO
- union_find
- map
- dfs
- Calendar
- JPA
- 스택
- Union-find
- 힙덤프
- Properties
- scanner
- BFS
- alter
- CSS
- deque
- math
- date
- 스프링부트
- set
- Java
- html
- List
- priority_queue
- spring boot
- sql
Archives
- Today
- Total
목록백준 (1)
매일 조금씩

#include #include #include using namespace std; int solution(string word) { int count = 0; for (int i = 0; i < word.size(); i++) { if (word[i] == 'c') { if (word[i + 1] == '=' || word[i + 1] == '-') i++; } else if (word[i] == 'd') { if (word[i + 1] == 'z'&& word[i + 2] == '=') { i++; i++; } else if (word[i + 1] == '-') i++; } else if (word[i] == 'l'&&word[i + 1] == 'j') i++; else if (word[i] == ..
알고리즘
2019. 9. 29. 21:33