[Python] 125. Valid Palindrome
·
study/LeetCode
https://leetcode.com/problems/valid-palindrome/ Valid Palindrome - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 풀이 from collections import deque class Solution: def isPalindrome(self, s: str) -> bool: # 소문자로 만들기 s = s.lower() # 문자를 넣을 deque strings = deque() # 소문자로 통일한 문장에서 영어, ..