Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/austingebauer/go-leetcode
/ isAlphaNumeric
Function
isAlphaNumeric
valid_palindrome_125/solution.go:34–37 ·
view source on GitHub ↗
(s string)
Source
from the content-addressed store, hash-verified
32
}
33
34
func
isAlphaNumeric(s string) bool {
35
matched, _ := regexp.MatchString(
"[a-z0-9]"
, s)
36
return
matched
37
}
Callers
1
isPalindrome
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected