Skip to content

Commit 43213a1

Browse files
committed
debug: add indent
1 parent 7cbe849 commit 43213a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

valid-palindrome/devyulbae.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@
1919
class Solution:
2020
def isPalindrome(self, s: str) -> bool:
2121
filtered_s = ''.join(char.lower() for char in s if char.isalnum())
22-
return filtered_s == filtered_s[::-1]
22+
return filtered_s == filtered_s[::-1]
23+

0 commit comments

Comments
 (0)