팰린드롬 확인 문제 팰린드롬이란 앞으로 읽을 때와 거꾸로 읽을 때 똑같은 단어를 말한다.
입력
- level
출력
- 1
// 통과한 코드
const input = require('fs').readFileSync('input.txt').toString().split('\n')
if(input[0].split('').reverse().join('') === input[0]){
console.log('1')
}else {
console.log('0')
}