언젠가는 펼쳐 볼 아카이브

[BOJ] 10988번 - 팰린드롬인지 확인하기 본문

IT/Baekjoon Oline Judge

[BOJ] 10988번 - 팰린드롬인지 확인하기

개발자희망생고롸파덕 2023. 8. 22. 16:00

사용언어 : javascript - node.js

 

#제출코드

const fs = require('fs');
const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt';
const input = fs.readFileSync(filePath).toString().trim();

solution(input);

function solution(input) {
  let reversStr = '';

  for (let i = input.length - 1; i >= 0; i--) {
    reversStr += input[i];
  }

  if (input === reversStr) {
    console.log(1);
  } else {
    console.log(0);
  }
}

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

[BOJ] 1157번 - 단어 공부  (0) 2023.08.22
[BOJ] 2444번 - 별찍기 - 7  (0) 2023.08.22
[BOJ] 3003번 - 킹, 퀸, 룩, 비숍, 나이트, 폰  (0) 2023.08.18
[BOJ] 25083번 - 새싹  (0) 2023.08.18
[BOJ] 5622번 - 다이얼  (0) 2023.08.17