문제 번호 : 14888번 문제 바로가기 ☞ https://www.acmicpc.net/problem/14888 const fs = require("fs"); const filePath = process.platform === "linux" ? "/dev/stdin" : "./input.txt"; let input = fs.readFileSync(filePath).toString().trim().split("\r\n"); // object function const operObj = { "+": (oper1, oper2) => oper1 + oper2, "-": (oper1, oper2) => oper1 - oper2, "*": (oper1, oper2) => oper1 * oper2, "/": (ope..
[BaekJoon] 14888번 연산자 끼워넣기 문제 - (nodejs)
문제 번호 : 14888번 문제 바로가기 ☞ https://www.acmicpc.net/problem/14888 const fs = require("fs"); const filePath = process.platform === "linux" ? "/dev/stdin" : "./input.txt"; let input = fs.readFileSync(filePath).toString().trim().split("\r\n"); // object function const operObj = { "+": (oper1, oper2) => oper1 + oper2, "-": (oper1, oper2) => oper1 - oper2, "*": (oper1, oper2) => oper1 * oper2, "/": (ope..
2022.01.27