카카오 코딩 테스트 풀이8 순위 검색 C++ https://programmers.co.kr/learn/courses/30/lessons/72412 2021. 3. 16. 신규 아이디 C++ https://programmers.co.kr/learn/courses/30/lessons/72410 코딩테스트 연습 - 신규 아이디 추천 카카오에 입사한 신입 개발자 네오는 "카카오계정개발팀"에 배치되어, 카카오 서비스에 가입하는 유저들의 아이디를 생성하는 업무를 담당하게 되었습니다. "네오"에게 주어진 첫 업무는 새로 programmers.co.kr #include #include using namespace std; string solution(string new_id) { string answer = ""; vector temp; for (int i = 0; i < new_id.size(); i++) { if (isupper(new_id[i])) temp.push_back(tolower(new_i.. 2021. 3. 14. 매칭 점수 풀이 #include #include #include using namespace std; const int MAX = 20; map page; vector info; vector matching; char uppertolower(char a) { if (a >= 'A' && a last) continue; start = html.find("https://") + 8; string str = ""; while (start != (last-1)) { str = str + html[start]; start++; } page[str] = i; html = html.substr(html.find(""); bool inbrace = true; start = html.find(">"); int index = html.f.. 2019. 9. 4. 길 찾기 게임 풀이 #include #include #include using namespace std; struct Node { int num; int x, y; Node* left; Node* right; }; bool cmp(Node a, Node b) { if (a.y > b.y) return true; else if (a.y == b.y) return a.x x > child->x) { if (parent->left == NULL) parent->left = child; else sortnode(parent->left, child); } else { if (parent.. 2019. 9. 3. 이전 1 2 다음