컴퓨터를 공부하고자 마음먹은지 N일차
[205일차]boj1920 node.js 본문
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을 하지말자.
'🧠PS' 카테고리의 다른 글
[211일차]boj1966 nodejs (0) | 2021.04.12 |
---|---|
[206일차]boj1929 nodejs (0) | 2021.04.07 |
[200일차]boj1654 node.js (0) | 2021.04.03 |
[116일차] 프로그래머스 / N으로 표현하기 (0) | 2021.01.03 |
[111일차]프로그래머스/ k번째 수 (javascript) (1) | 2020.12.29 |
Comments