개발/알고리즘 & 자료구조
[2020 카카오 블라인드 채용][프로그래머스] 괄호 변환 (C++)
https://programmers.co.kr/learn/courses/30/lessons/42888 코딩테스트 연습 - 오픈채팅방 오픈채팅방 카카오톡 오픈채팅방에서는 친구가 아닌 사람들과 대화를 할 수 있는데, 본래 닉네임이 아닌 가상의 닉네임을 사용하여 채팅방에 들어갈 수 있다. 신입사원인 김크루는 카카오톡 오 programmers.co.kr [2020 카카오 블라인드 채용][프로그래머스] 괄호 변환 (C++) #include #include #include // #include using namespace std; enum ActionType { ENTER=0, CHANGE, LEAVE, }; map idMap; vector command; vector solution(vector record) {..