LEETCODE - Palindrome
from collections import deque as Deque
import collections
import re
def isPalindrome(self, s : str) -> bool :
strs = []
for char in s:
if char.isalnum() :
strs.append(char.lower())
while len(strs) > 1:
if strs.pop(0) != strs.pop():
return False
return True
def isPalindrome2(self, s: str) -> bool :
strs:Deque = collections.deque()
for char in s:
if char.isalnum():
strs.append(char.lower())
while len(strs) > 1:
if strs.popleft() != strs.pop():
return False
return True
# pop()은 O(n)이지만 popleft()는 O(1)이다.
def isPalindrome3(self, s: str) -> bool :
s = s.lower()
s = re.sub('[^a-z0-9]','',s)
return s == s[::-1]
#s[::-1] 거꾸로 뒤집기
#파이썬 문자열 슬라이싱을 기준으로 한 파이썬 문자열 처리 실행 시간
# 슬라이싱 -> 리스트 reverse() -> reversed() + join() -> for 반복 -> while 반복 -> 재귀
# 01234
# 안녕하세요
# -5-4-3-2-1
# [::2] 2칸씩 앞으로 이동, [-3:] 뒤에서 3번째부터 끝까지
Author And Source
이 문제에 관하여(LEETCODE - Palindrome), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@aspalt85/LEETCODE-Palindrome저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)