Skip to content

Commit dbcc9f7

Browse files
committed
Fix minor typo
1 parent 085d4e1 commit dbcc9f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

125_Valid_Palindrome/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def is_palindrome(s: str) -> bool:
3434

3535
### Solution 2: Two Pointers (In-Place)
3636

37-
```pethon
37+
```python
3838
def is_palindrome2(s: str) -> bool:
3939
left = 0
4040
right = len(s) - 1

0 commit comments

Comments
 (0)