github.com/qiuhoude/go-web@v0.0.0-20220223060959-ab545e78f20d/algorithm/datastructures/rsa/rsa_test.go (about) 1 package rsa 2 3 import "testing" 4 5 func TestGcd(t *testing.T) { 6 7 t.Log(greatestCommonDivisor1(4, 6)) 8 t.Log(greatestCommonDivisor2(4, 6)) 9 t.Log(greatestCommonDivisor3(4, 6)) 10 }