Adventure Time - Jake [백준/python] 10988 팰린드롬: 런타임에러(IndexError)
본문 바로가기
Back-end/백준(python)

[백준/python] 10988 팰린드롬: 런타임에러(IndexError)

by bogyoi 2023. 10. 24.

vscode나 코랩에서 돌리면 정상적으로 작동되고 조사식 봤을 때 문제도 딱히 없어보였는데 런타임에러가 생겼따

여태 생긴 인덱스에러는 리스트를 처음에 초기화를 하지 않았거나 인덱스 참조를 잘 못해서의 이유들이었는데

이번엔 뭔지 모르겠다

 

word=input()
N=len(word)//2

i=0
while(1):
  if word[i]!=word[len(word)-1-i]:
    print(0)
    break
  i+=1
  if (i==N):
    print(1)
    break

 

문제의 코드 .

 

 

 

 

word=input()
print(1 if word==word[::-1]
     else 0)
 

바꾼 코드