지나가던 개발자
[Python] 백준 10174번(팰린드롬) 문제 풀이 본문
def is_palindrome(a):
return a == a[::-1]
for i in range(int(input())):
if is_palindrome(input().lower()):
print("Yes")
continue
print("No")
'PS > Python' 카테고리의 다른 글
[Python] 백준 11899번(괄호 끼워넣기) 문제 풀이 (0) | 2022.12.11 |
---|---|
[Python] 백준 13235번(팰린드롬) 문제 풀이 (0) | 2022.12.10 |
[Python] 백준 11365번(!밀비 급일) 문제 풀이 (0) | 2022.12.10 |
[Python] 백준 10773번(제로) 문제 풀이 (0) | 2022.12.10 |
[Python] 백준 10828번(스택) 문제 풀이 (0) | 2022.12.09 |
Comments