지나가던 개발자
[Python] 백준 13235번(팰린드롬) 문제 풀이 본문
def is_palindrome(a):
return str(a == a[::-1]).lower()
print(is_palindrome(input()))
저번에 푼 10174번 문제랑 제목이 똑같다 ㅋㅋ.
https://developer-next-to-you.tistory.com/307
'PS > Python' 카테고리의 다른 글
[Python] 백준 3986번(좋은 단어) 문제 풀이 (0) | 2022.12.12 |
---|---|
[Python] 백준 11899번(괄호 끼워넣기) 문제 풀이 (0) | 2022.12.11 |
[Python] 백준 10174번(팰린드롬) 문제 풀이 (0) | 2022.12.10 |
[Python] 백준 11365번(!밀비 급일) 문제 풀이 (0) | 2022.12.10 |
[Python] 백준 10773번(제로) 문제 풀이 (0) | 2022.12.10 |
Comments