Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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)

AltStyle によって変換されたページ (->オリジナル) /