문제 번호 : 1182 번 문제 바로가기 ☞ https://www.acmicpc.net/problem/1182 const fs = require("fs"); const filePath = process.platform === "linux" ? "/dev/stdin" : "./input.txt"; let input = fs.readFileSync(filePath).toString().trim().split("\n"); const comb = (count, originArr, inArr) => { if (count === -1) return; if (inArr.length >= 1) { if (inArr.reduce((a, b) => a + b) === target) cnt++; } for (let i = ..
[BaekJoon] 1182 번 부분수열의 합 문제 - (nodejs)
문제 번호 : 1182 번 문제 바로가기 ☞ https://www.acmicpc.net/problem/1182 const fs = require("fs"); const filePath = process.platform === "linux" ? "/dev/stdin" : "./input.txt"; let input = fs.readFileSync(filePath).toString().trim().split("\n"); const comb = (count, originArr, inArr) => { if (count === -1) return; if (inArr.length >= 1) { if (inArr.reduce((a, b) => a + b) === target) cnt++; } for (let i = ..
2022.01.27