We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c2e11f commit c538722Copy full SHA for c538722
valid-palindrome/mandel-17.py
@@ -2,4 +2,3 @@ class Solution:
2
def isPalindrome(self, s: str) -> bool:
3
ch = [c.lower() for c in s if c.isalnum()]
4
return ch == ch[::-1]
5
-
0 commit comments