MCPcopy 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
28func isAlnum(r rune) bool {
29 return unicode.IsLetter(r) || unicode.IsDigit(r)
30}

Callers 1

isPalindromeValidFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected