1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-13 22:28:14 +09:00
hotomoe/src/prelude/math.ts

4 lines
91 B
TypeScript
Raw Normal View History

2018-09-06 02:44:01 +09:00
export function gcd(a: number, b: number): number {
return b === 0 ? a : gcd(b, a % b);
}