일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 20201018뉴스
- 백준
- 헤드라인
- LeetCode #Python #알고리즘 #코딩테스트 #interview
- 알고리즘
- 크롤링
- 20200615뉴스
- MySQL
- 20201011뉴스
- 20201016뉴스
- 20201017뉴스
- 헤드라인기사
- json
- 20201015뉴스
- 파이썬
- C++
- 기사헤드라인
- encoding
- 뉴스헤드라인
- 헤드라인모음
- 20200816뉴스
- 경제뉴스
- 오늘의뉴스
- 기사
- 20201013뉴스
- Python
- 헤드라인뉴스
- 뉴스
- 코테
- 백준2225
Archives
- Today
- Total
HelloCho
[Python] #125. Valid Palindrome(easy) 본문
문제
이 문제는 palindrome 우리말로 회문문자인지 아닌지를 판단하는 프로그래밍을 하면된다!
회문문자란 앞으로나 뒤로나 같은 문자를 말한다. ex) 토마토, 이효리(이)
class Solution:
def isPalindrome(self, s: str) -> bool:
if len(s)==0:
return True
s = s.lower()
s = s.replace(' ','')
res = ''
for i in s:
if i.isalnum():
res += i
return res == res[::-1]
먼저
1) 대문자를 소문자로 바꾼다.
2) 띄어쓰기를 없앤다.
for문을 이용해 알파벳이나 숫자 인 것만 res에 합쳐준다. return 값은 res값과 뒤집은 것을 비교한다.
결과
'코테 > LeetCode' 카테고리의 다른 글
[Python] #H-Index2(Medium) (0) | 2020.09.30 |
---|---|
[Python] #274. H-Index(Medium) (0) | 2020.09.30 |
[Python] #204. Count Primes(easy) (0) | 2020.09.30 |
[Python] #1351. Count Negative Numbers in a Sorted Matrix(easy) (0) | 2020.09.29 |
[Python] #209. Minimum Size Subarray Sum(Medium) (0) | 2020.09.29 |
Comments