본문 바로가기

BAEKJOON/JavaScript

[BAEKJOON] 팰린드롬수 (1259번)

// const testCase  = require("fs").readFileSync("/dev/stdin").toString().trim().split(" ");
const testCase = "121\n1231\n12421\n0".toString().trim().split("\n");

function palindromeString(testCase) {
    let reverseTestCase = [];

    for(let i = 0; i<testCase.length - 1; i++) {
        reverseTestCase.push(testCase[i].split("").reverse().join(""));
        if(testCase[i] === reverseTestCase[i]) {
            console.log("yes");
        }else {
            console.log("no");
        }
    }
}

palindromeString(testCase);

'BAEKJOON > JavaScript' 카테고리의 다른 글

[BAEKJOON] 제로 (10773번)  (0) 2022.03.30
[BAEKJOON] 평균은 넘겠지 (4344번)  (0) 2022.03.29
[BAEKJOON] 평균 (1546번)  (0) 2022.03.28
[BAEKJOON] 상수 (2908번)  (0) 2022.03.28
[BAEKJOON] 나머지 (3052번)  (0) 2022.03.21