Skip to content

Commit 7ff4b4a

Browse files
committed
125.Valid Palindrome.md
1 parent 437fd89 commit 7ff4b4a

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

String/Easy/125.Valid Palindrome.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,11 @@
1010
**Note:**
1111

1212
- 对于空字符串,默认为回文。
13-
-
14-
15-
----------
1613

1714
# 思路
1815

1916
很简单,使用正则表达式匹配所有字母,并将其转换为小写字母。然后收尾比对,不一样就返回False。
2017

21-
22-
----------
23-
2418
# 代码
2519

2620
```python

0 commit comments

Comments
 (0)