1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-25 12:08:07 +09:00
hotomoe/packages/backend/src/misc/prelude/math.ts
2022-09-18 03:27:08 +09:00

4 lines
91 B
TypeScript

export function gcd(a: number, b: number): number {
return b === 0 ? a : gcd(b, a % b);
}