Recent Posts
Notice
No Rules Rules
팰린드롬인지 확인하기 (feat. 백준, 10988번) 본문
728x90
반응형
팰린드롬인지 확인하기
https://www.acmicpc.net/problem/10988
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int solution(register int s, register int e, string& str){
if(str.at(s++) == str.at(e--)){
if(s > e)
return 1;
}
else
return 0;
return solution(s, e, str);
}
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
string str;
cin >> str;
cout << solution(0, str.size() - 1, str);
return 0;
}
// *&)*@*
반응형
재귀적으로 풀이할 수 있는 간단한 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
미션 도네이션 (feat. 백준, 25965번) (0) | 2022.11.15 |
---|---|
30 (feat. 백준, 10610번) (0) | 2022.11.10 |
베스트셀러 (feat. 백준, 1302번) (0) | 2022.11.09 |
타일 채우기 (feat. 백준, 2133번) (0) | 2022.11.09 |
명령 프롬프트 (feat. 백준, 1032번) (0) | 2022.11.09 |
Comments