
🔴 문제
A/B
🟡 Sol
const fs = require('fs');
const path = process.platform === 'linux' ? '/dev/stdin' : 'Wiki\\input.txt';
const [a, b] = fs.readFileSync(path).toString().trim().split(' ').map(Number);
console.log(a / b);
🟢 풀이
⏰ 소요한 시간 : -
에센셜 문제여서 열심히 푸는중 ... 그냥 나누기 해주면 된다.
🔵 Ref