mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
471 B
38 lines
471 B
5 years ago
|
package is
|
||
5 years ago
|
|
||
|
import (
|
||
|
"math/big"
|
||
|
"unicode"
|
||
|
)
|
||
|
|
||
5 years ago
|
func Digit(s string) bool {
|
||
5 years ago
|
for _, r := range s {
|
||
|
if !unicode.IsDigit(r) {
|
||
|
return false
|
||
|
}
|
||
|
}
|
||
|
return true
|
||
|
}
|
||
|
|
||
5 years ago
|
func Lower(s string) bool {
|
||
5 years ago
|
for _, r := range s {
|
||
|
if !unicode.IsLower(r) {
|
||
|
return false
|
||
|
}
|
||
|
}
|
||
|
return true
|
||
|
}
|
||
|
|
||
5 years ago
|
func Upper(s string) bool {
|
||
5 years ago
|
for _, r := range s {
|
||
5 years ago
|
if !unicode.IsUpper(r) {
|
||
5 years ago
|
return false
|
||
|
}
|
||
|
}
|
||
|
return true
|
||
|
}
|
||
|
|
||
5 years ago
|
func Prime(i int) bool {
|
||
5 years ago
|
return big.NewInt(int64(i)).ProbablyPrime(0)
|
||
|
}
|