2022-11-05
09:00-17:00 / 17:00-19:00 / 21:00~22:00 / 23:00-24:00
router 랑 정규식
스택
function solution(s) {
let answer;
let stack = [];
for (let x of s) {
if (x === ')') {
while (stack.pop() !== '(');
} else stack.push(x);
}
answer = stack.join('');
return answer;
}
let str = '(A(BC)D)EF(G(H)(IJ)K)LM(N)';
console.log(solution(str));
Monday/ Wednesday(Tuesday)/ Thursday 19:45-20:15 (English with Clarisse)
Tuesday / Thursday 21:00 ~ 22:00 (어깨 수영 보류)
Saturday 09:00~10:00
Sunday
아침부터 도서관에 왔지😏