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
- 티스토리챌린지
- 1563
- RVO
- GeeksForGeeks
- Frustum
- const
- 팰린드롬 만들기
- 프로그래머스
- directx
- Unreal Engine5
- IFileDialog
- C
- baekjoon
- DirectX11
- UE5
- NRVO
- DeferredRendering
- winapi
- Programmers
- C++
- softeer
- 언리얼엔진5
- RootMotion
- UnrealEngine4
- 2294
- 오블완
- UnrealEngine5
- 줄 세우기
- algorithm
- 백준
Archives
- Today
- Total
목록짝지어 제거하기 (1)
Game Develop
[Algorithm] Programmers :: 짝지어 제거하기
https://programmers.co.kr/learn/courses/30/lessons/12973 코딩테스트 연습 - 짝지어 제거하기 짝지어 제거하기는, 알파벳 소문자로 이루어진 문자열을 가지고 시작합니다. 먼저 문자열에서 같은 알파벳이 2개 붙어 있는 짝을 찾습니다. 그다음, 그 둘을 제거한 뒤, 앞뒤로 문자열을 이어 붙 programmers.co.kr 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 32 33 34 35 36 37 38 int solution(string s) { int answer = -1; stack tempStack; while (s.size() != 0) { char sta..
Algorithm/Programmers
2022. 5. 20. 07:45