1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-13 01:02:28 +08:00

feat: add IsPrime

This commit is contained in:
dudaodong
2023-03-30 11:54:20 +08:00
parent 91503b1656
commit 027abd6ad5
3 changed files with 45 additions and 0 deletions

View File

@@ -263,3 +263,21 @@ func ExamplePointDistance() {
// Output:
// 5
}
func ExampleIsPrime() {
result1 := IsPrime(-1)
result2 := IsPrime(0)
result3 := IsPrime(1)
result4 := IsPrime(2)
fmt.Println(result1)
fmt.Println(result2)
fmt.Println(result3)
fmt.Println(result4)
// Output:
// false
// false
// false
// true
}