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 |
Tags
- 파이썬
- github
- Kaggle
- Real or Not? NLP with Disaster Tweets
- 금융문자분석경진대회
- 자연어처리
- 더현대서울 맛집
- 우분투
- SW Expert Academy
- AI 경진대회
- ChatGPT
- Docker
- Baekjoon
- 프로그래머스
- 프로그래머스 파이썬
- 백준
- PYTHON
- 맥북
- ubuntu
- hackerrank
- 캐치카페
- 코로나19
- 편스토랑
- 데이콘
- 편스토랑 우승상품
- gs25
- leetcode
- dacon
- programmers
- Git
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