728x90
const fs = require('fs');
const arr = fs.readFileSync("/dev/stdin").toString().trim().split("\n");
for (let i = 0; i < arr.length; i++) {
if(arr[i] == 0) {
break;
}
test(arr[i].split(''))
}
function test(n) {
let result = 'no';
for (let i = 0; i < n.length; i++) {
if((n[i] == n[n.length-1-i]) == false) {
result = 'no';
break;
}
result = 'yes';
}
console.log(result);
}
728x90
'Development > 코딩테스트' 카테고리의 다른 글
[백준] 2292 Node.js (0) | 2022.09.29 |
---|---|
[백준] 1085 Node.js (0) | 2022.09.29 |
[백준] 3052 Node.js (0) | 2022.09.28 |
[백준] 15829 Node.js (1) | 2022.09.27 |
[백준] 2577 Node.js (1) | 2022.09.26 |
댓글