본문 바로가기
Development/코딩테스트

[백준] 15964 Node.js

by Yeony99 2022. 9. 15.
728x90
const fs = require('fs');
const input = fs.readFileSync("/dev/stdin").toString().trim().split(" ").map(Number);

let result = 0;

const cal = (a, b) => {
    return (a+b) * (a-b)
}

result = cal(input[0], input[1])
console.log(result)
728x90

'Development > 코딩테스트' 카테고리의 다른 글

[백준] 2440 Node.js  (0) 2022.09.16
[백준] 4101 Node.js  (0) 2022.09.15
[백준] 2744 Node.js  (0) 2022.09.14
[백준] 2743 Node.js  (0) 2022.09.13
[백준] 2738 node.js  (0) 2022.09.05

댓글