컴퓨터를 공부하고자 마음먹은지 N일차

[205일차]boj1920 node.js 본문

🧠PS

[205일차]boj1920 node.js

졸린새 2021. 4. 6. 22:44
728x90

백준 1920번 수 찾기

문제링크

CODE

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const readline = require("readline");
 
const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout,
});
const input = [];
rl.on("line"function (line) {
    input.push(line);
    if (input.length === 4) {
        const [N, A, M, nums] = input;
        const arrA = new Set(A.split(" "));
 
        nums.split(" ").forEach((el) => {
            arrA.has(el) ? console.log(1) : console.log(0);
        });
        rl.close();
    }
}).on("close"function () {
    process.exit();
});
cs

description

참고 포인트는 두가지다.
set을 통해 중복된값을 없애서 시간낭비를 줄이고,
불필요한 join을 하지말자.

Comments