aboutsummaryrefslogtreecommitdiff
path: root/utils/math/math.go
blob: 01035b9b78f094b63539d75f35a59948c6e597fc (plain)
1
2
3
4
5
6
7
8
package math

func GCD(a, b int) int {
	for b != 0 {
		a, b = b, a%b
	}
	return a
}