티스토리 뷰
https://www.acmicpc.net/problem/10988
word = list(input())
length = len(word)
reverse = []
for i in range(length-1, -1, -1):
reverse.append(word[i])
if word == reverse:
print(1)
else:
print(0)
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 1676 : 팰린드롬인지 확인하기 - Python (0) | 2021.02.02 |
---|---|
[백준] 10546 : 배부른 마라토너 - Python (0) | 2020.07.17 |
[백준] 10026 : 적록색약 - Python (0) | 2020.07.10 |
[백준] 11404 : 플로이드 - Python (0) | 2020.07.10 |
[백준] 11403 : 경로 찾기 - Python (0) | 2020.07.09 |