Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- PYTHON
- programmers
- ubuntu
- hackerrank
- 편스토랑 우승상품
- 금융문자분석경진대회
- 우분투
- 캐치카페
- 프로그래머스
- leetcode
- 더현대서울 맛집
- ChatGPT
- Git
- Real or Not? NLP with Disaster Tweets
- dacon
- github
- 코로나19
- 편스토랑
- 프로그래머스 파이썬
- 데이콘
- gs25
- SW Expert Academy
- Docker
- 맥북
- 백준
- 자연어처리
- Baekjoon
- AI 경진대회
- 파이썬
- Kaggle
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 125. Valid Palindrome (Python) 본문
728x90
반응형
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
Note: For the purpose of this problem, we define empty string as valid palindrome.
Example 1:
Input: "A man, a plan, a canal: Panama"
Output: true
Example 2:
Input: "race a car"
Output: false
Solution
import re
class Solution:
def isPalindrome(self, s: str) -> bool:
s = s.lower()
text = re.sub('[^a-zA-Z0-9]','',s)
return text == text[::-1]
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 283. Move Zeroes (Python) (0) | 2020.06.19 |
---|---|
[leetCode] 20. Valid Parentheses (Python) (0) | 2020.06.17 |
[leetCode] 387. First Unique Character in a String (Python) (0) | 2020.06.15 |
[leetCode] 88. Merge Sorted Array (Python) (0) | 2020.06.14 |
[leetCode] 136. Single Number (Python) (0) | 2020.06.13 |
Comments