| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- bfs
- 백준 2193번 c++
- 백준 11726번 C++
- transform.position
- 백준 10844번 c++
- 탈잉유튜브강의
- 유니티 LTS
- TOPCIT 문제 유형
- 프로그래머스 단체사진 찍기 C++
- TOPCIT 후기
- 탈잉회사원A챌린지
- 탑싯기출문제
- 2644번
- 코드
- long int 의 차이
- UML Diagram 정리
- 프로그래머스 가장 큰 수 C++
- 로블록스 script local script 차이
- 탑싯기출
- 백준
- c++
- 백준 2225번 c++
- 탈잉유튜브기획
- 탈잉챌린지
- 유니티
- 풀이
- 1699번
- 회사원a탈잉강의후기
- 차이
- 회사원A강의후기
- Today
- Total
목록Coding Test (53)
Kiki Devlog
regex_replace 가 뭔지 몰라서 코드가 확늘어남. 이걸 지금 알다니 잊지말구 잘써먹기 수정 전 코드 #include #include #include using namespace std; int solution(string s) { int answer = 0; string ans ; string numString; for (char a : s){ //숫자라면 if (int(a) >= 48 && int(a)
#include #include #include using namespace std; vector solution(vector answers) { vector answer; int maxAnsNum = -1; vector students = { vector ({1,2,3,4,5}), vector ({2,1,2,3,2,4,2,5}), vector ({3,3,1,1,2,2,4,4,5,5}), }; for(int i = 0; i< students.size();i++){ //채점 int ansNum = 0; for(int j = 0; j < answers.size();j++){ int curStdAnswer = j % students[i].size(); //학생답 계속 rotation으로 넣기 if ( answ..
#include using namespace std; int solution(vector board, vector moves) { int answer = 0; int height = board[0].size(); vector basket; for (int move : moves){ // 비어있지 않은 곳까지 내려가서 인형 바구니에 넣기 for (int i = 0; i 0 ? currentTop = basket.back() : currentTop = 0; //바구니의 인형이 터질 수 있다면 if (currentTop == pickedDoll){ answer+=2; basket.pop_back(); } //인형 터질 수 없다면 else{ basket.push_back(pickedDoll); } board[i..