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 085d4e1 commit dbcc9f7Copy full SHA for dbcc9f7
125_Valid_Palindrome/README.md
@@ -34,7 +34,7 @@ def is_palindrome(s: str) -> bool:
34
35
### Solution 2: Two Pointers (In-Place)
36
37
-```pethon
+```python
38
def is_palindrome2(s: str) -> bool:
39
left = 0
40
right = len(s) - 1
0 commit comments