-
[백준]4101번 크냐? with Node.jsProgramming/Algorithm 2022. 6. 15. 22:28
const input = require('fs').readFileSync('/dev/stdin').toString().split('\n').map( v => v.split(' ').map(Number)); let i = 0; while(true){ if(input[i][0] === 0 && input[i][1] === 0) { break; }else if(input[i][0] > input[i][1]){ console.log('Yes'); }else{ console.log('No'); } i++; }
'Programming > Algorithm' 카테고리의 다른 글
[백준]1315번 그룹 단어 체커 with Node.js (0) 2022.07.03 [백준]1157번 단어 공부 with Node.js (0) 2022.06.25 [백준]9020번 골드바흐의 추측 with Node.js (1) 2022.04.14 [백준]1065번 한수 with Node.js (0) 2022.04.07 [백준]2884번 알람시계 with Node.js (0) 2022.03.31