목록javascript (110)
언젠가는 펼쳐 볼 아카이브
사용언어 : javascript - node.js #제출코드 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; const n = fs.readFileSync(filePath).toString().trim(); solution(n); function solution(n) { // 둘레의 길이는 입력한 n*4 console.log(n*4); }
사용언어 : javascript - node.js #제출 코드 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; const array = fs .readFileSync(filePath) .toString() .trim() .split('\n') .map((item) => item .trim() .split(' ') .map((item) => +item) ); solution(array); function solution(array) { let x = array.map((item) => item[0]).sort((a, b) => a - b); let y = array.ma..
사용언어 : javascript - node.js #제출코드 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; const [a, b] = fs.readFileSync(filePath).toString().trim().split('\n'); solution(+a, +b); function solution(a, b) { console.log(a * b); }
사용언어 : javascript - node.js #제출코드 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; const [x, y, w, h] = fs .readFileSync(filePath) .toString() .trim() .split(' ') .map((item) => +item); solution(x, y, w, h); function solution(x, y, w, h) { let answer = []; answer.push(Math.abs(x)); answer.push(Math.abs(x - w)); answer.push(Math.abs(y)); answ..