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 cb07e4a commit 207d8d4Copy full SHA for 207d8d4
Algorithms/0125.valid-palindrome/valid-palindrome.go
@@ -24,6 +24,7 @@ func isPalindrome(s string) bool {
24
return true
25
}
26
27
+// 判断 c 是否是需要检查的字符
28
func isChar(c byte) bool {
29
if ('a' <= c && c <= 'z') || ('0' <= c && c <= '9') {
30
0 commit comments