Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ByteByteGoHq/coding-interview-patterns
/ isAlnum
Function
isAlnum
go/Two Pointers/is_palindrome_valid.go:28–30 ·
view source on GitHub ↗
(r rune)
Source
from the content-addressed store, hash-verified
26
}
27
28
func
isAlnum(r rune) bool {
29
return
unicode.IsLetter(r) || unicode.IsDigit(r)
30
}
Callers
1
isPalindromeValid
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected