GolangStudy/pkg/MaxCommFactor/MaxCommFactor.go

9 lines
97 B
Go
Raw Normal View History

2022-11-06 22:22:16 +08:00
package MaxCommFactor
func MaxComm(x, y int) int {
for y != 0 {
x, y = y, x%y
}
return x
}