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
- OverTheWire
- Google Refund
- Unity Editor
- linux
- docker
- critical rendering path
- Unity IAP
- Packet Network
- Google Developer API
- rpg server
- Digital Ocean
- nodejs
- spread 연산자
- Camera Movement
- springboot
- SDK upgrade
- react
- unity
- --watch
- draganddrop
- css framework
- Spring Boot
- MySQL
- Camera Zoom
- express
- server
- Git
- screencapture
- mongoDB
- java
Archives
- Today
- Total
목록2025/03/10 (1)
우당탕탕 개발일지
[프로그래머스] Level 3. 가장 긴 팰린드롬
https://school.programmers.co.kr/learn/courses/30/lessons/12904 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 팰린드롬에는 2가지가 있다.홀수로 대칭인것 "abcba" >> getPalindrome() 함수에서 max길이를 구한다.짝수로 대칭인것 "abccba" >> getEvenPalindrom() 함수에서 max길이를 구한다. #include #include using namespace std;int getPalindrome(string s, int i){ int value = 1; int index =1; while(i-index..
Algorithm(c++)/Level 3
2025. 3. 10. 11:27