mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-25 03:58:08 +09:00
4 lines
91 B
TypeScript
4 lines
91 B
TypeScript
|
export function gcd(a: number, b: number): number {
|
||
|
return b === 0 ? a : gcd(b, a % b);
|
||
|
}
|