[코딩테스트 - 백준 10988번 C++] 팰린드롬인지 확인하기

최초로 (cho)·2023년 2월 9일
0

코딩테스트

목록 보기
7/9
post-custom-banner

팰린드롬 : 회문 또는 팰린드롬은 거꾸로 읽어도 제대로 읽는 것과 같은 문장이나 낱말, 숫자, 문자열 등이다!

reverse 해서 원래 글자와 비교하자

#include <bits/stdc++.h>
using namespace std;
string s, temp;
int main(){
    // ios_base::sync_with_stdio(false); 
    // cin.tie(NULL); cout.tie(NULL);

    cin >> s;
    temp = s; 
    reverse(temp.begin(), temp.end());
    if(temp == s) cout << 1 << "\n";
    else cout << 0 << "\n";
    
    return 0;
}
profile
relentless
post-custom-banner

0개의 댓글