mirror of
https://github.com/cubixle/codekata-golang.git
synced 2026-04-24 21:24:46 +01:00
49: prime permutations
This commit is contained in:
50
49_prime_permutations/main.go
Normal file
50
49_prime_permutations/main.go
Normal file
@@ -0,0 +1,50 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
for a := 1489; a < 3340; a++ {
|
||||
b := a + 3330
|
||||
c := b + 3330
|
||||
if isPrime(a) && isPrime(b) && isPrime(c) && isPerm(a, b) && isPerm(b, c) {
|
||||
fmt.Println((a*10000+b)*10000 + c)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func isPrime(n int) bool {
|
||||
if n <= 1 {
|
||||
return false
|
||||
}
|
||||
res := n
|
||||
//牛顿法求平方根
|
||||
for res*res > n {
|
||||
res = (res + n/res) / 2
|
||||
}
|
||||
divider := 2
|
||||
for divider <= res {
|
||||
if n%divider == 0 {
|
||||
return false
|
||||
}
|
||||
divider++
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
func isPerm(a, b int) bool {
|
||||
cnt := []int{0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
|
||||
for a > 0 {
|
||||
cnt[a%10]++
|
||||
a = a / 10
|
||||
}
|
||||
for b > 0 {
|
||||
cnt[b%10]--
|
||||
b = b / 10
|
||||
}
|
||||
for _, n := range cnt {
|
||||
if n != 0 {
|
||||
return false
|
||||
}
|
||||
}
|
||||
return true
|
||||
}
|
||||
38
49_prime_permutations/main_test.go
Normal file
38
49_prime_permutations/main_test.go
Normal file
@@ -0,0 +1,38 @@
|
||||
package main
|
||||
|
||||
import "testing"
|
||||
|
||||
func Test_isPerm(t *testing.T) {
|
||||
type args struct {
|
||||
a int
|
||||
b int
|
||||
}
|
||||
tests := []struct {
|
||||
name string
|
||||
args args
|
||||
want bool
|
||||
}{
|
||||
{
|
||||
"test_1",
|
||||
args{123, 321},
|
||||
true,
|
||||
},
|
||||
{
|
||||
"test_2",
|
||||
args{123, 213},
|
||||
true,
|
||||
},
|
||||
{
|
||||
"test_3",
|
||||
args{123, 211},
|
||||
false,
|
||||
},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
if got := isPerm(tt.args.a, tt.args.b); got != tt.want {
|
||||
t.Errorf("isPerm() = %v, want %v", got, tt.want)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user