hellogomod/num/num.go
Yuki 8af8fe0979
feat: Add more packages.
There are two packages in the module.
2025-06-14 11:41:04 +08:00

14 lines
156 B
Go

package num
func IsPrime(n int) bool {
if n <= 1 {
return false;
}
for i := 2; i < n; i++ {
if n % i == 0 {
return false;
}
}
return true;
}