언젠가는 펼쳐 볼 아카이브

[BOJ] 1085번 - 직사각형에서 탈출 본문

IT/Baekjoon Oline Judge

[BOJ] 1085번 - 직사각형에서 탈출

개발자희망생고롸파덕 2023. 9. 6. 16:40

사용언어 : 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));
  answer.push(Math.abs(y - h));

  answer.sort((a, b) => a - b);

  console.log(answer[0]);
}

'IT > Baekjoon Oline Judge' 카테고리의 다른 글

[BOJ] 3009번 - 네 번째 점  (0) 2023.09.06
[BOJ] 27323번 - 직사각형  (0) 2023.09.06
[BOJ] 11653번 - 소인수분해  (0) 2023.09.06
[BOJ] 2581번 - 소수  (0) 2023.09.06
[BOJ] 1978번 - 소수 찾기  (0) 2023.08.30