반응형
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 | 29 | 30 | 31 |
Tags
- dfs
- Crawling
- javascript
- 크롤링
- HTTP 완벽 가이드
- 가천대
- 프로그래머스 레벨 2
- 수학
- socket
- 쉬운 문제
- Nestjs
- 소켓
- type challenge
- Node.js
- 알고리즘
- Algorithm
- typescript
- ip
- TCP
- dp
- 타입 챌린지
- 문자열
- 타입스크립트
- 백준
- 프로그래머스
- 그래프
- HTTP
- 레벨 1
- BFS
- 자바스크립트
Archives
- Today
- Total
kakasoo
[node.js] 균형잡힌 세상 ( 백준 4949번 ) 본문
반응형
처음에는 대괄호, 소괄호를 따로 따로 배열을 만들어서 관리해 주었는데, 예외가 있었다.
[(]) 형태로 들어올 때 제대로 동작하지 않았다.
그래서 배열을 하나로 합쳐줬더니 해결되었다.
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
rl.on("line", (line) => {
if (line === ".") {
rl.close();
}
main(line);
}).on("close", () => {
process.exit();
});
/**
*
* @param {string} line
*/
const main = (line) => {
const bracket = line
.split("")
.filter((el) => el === "(" || el === ")" || el === "[" || el === "]");
const big = [];
if (bracket.length % 2 !== 0) {
console.log("no");
return;
}
// console.log(bracket);
for (let i = 0; i < bracket.length; i++) {
const cur = bracket[i];
if (cur === "[") {
big.push(cur);
// console.log("big : ", big);
}
if (cur === "]") {
if (big[big.length - 1] === "[") {
big.pop();
// console.log("big : ", big);
} else {
big.push(cur);
// console.log("big : ", big);
}
}
if (cur === "(") {
big.push(cur);
// console.log("big : ", big);
}
if (cur === ")") {
if (big[big.length - 1] === "(") {
big.pop();
// console.log("big : ", big);
} else {
big.push(cur);
// console.log("big : ", big);
}
}
}
if (!big.length && !big.length) {
console.log("yes");
} else {
console.log("no");
}
};
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[node.js] 가장 긴 감소하는 부분 수열 ( 백준 11722번 ) (0) | 2021.03.30 |
---|---|
[node.js] 가장 긴 증가하는 부분 수열 ( 백준 11053번 ) (0) | 2021.03.30 |
[node.js] 다리 놓기 ( 백준 1010번 ) (0) | 2021.03.30 |
[node.js] 잃어버린 괄호 (백준 1541번) (0) | 2021.03.30 |
[node.js] 포도주 시식 ( 백준 2165번 ) (0) | 2021.03.29 |