문제 번호 : 1655번 문제 바로가기 ☞ https://www.acmicpc.net/problem/1655 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim(); let [n, ...arr] = input.split('\n').map((el) => Number(el)); class Heap{ constructor(){ this.node = []; } insert(data, status){ this.node.push(data); let child = this.node.leng..
[BaekJoon] 1655번 가운데를 말해요 문제 - (nodejs)
문제 번호 : 1655번 문제 바로가기 ☞ https://www.acmicpc.net/problem/1655 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim(); let [n, ...arr] = input.split('\n').map((el) => Number(el)); class Heap{ constructor(){ this.node = []; } insert(data, status){ this.node.push(data); let child = this.node.leng..
2022.01.10