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 |
Tags
- css framework
- unity
- Packet Network
- Camera Zoom
- Spring Boot
- Git
- nodejs
- Unity IAP
- screencapture
- java
- draganddrop
- Google Developer API
- rpg server
- spread 연산자
- MySQL
- server
- Digital Ocean
- Unity Editor
- Camera Movement
- mongoDB
- express
- react
- linux
- docker
- Google Refund
- --watch
- springboot
- SDK upgrade
- critical rendering path
- OverTheWire
Archives
- Today
- Total
목록2025/02/16 (1)
우당탕탕 개발일지
[프로그래머스] Level 2. 연속된 부분 수열
https://school.programmers.co.kr/learn/courses/30/lessons/178870 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 1. 실패코드 그냥 처음부터 더해가면서 합이 k인 부분을 찾는 직관적인 방법 -> 시간초과 발생#include #include using namespace std;int s = -1; int e = -1;void change_answer(vector& seq, int i, int j){ if(s == -1){ s = i; e = j; return; } if(j-i > e-s) return; ..
Algorithm(c++)/Level 2
2025. 2. 16. 21:07