Searched refs:gcd (Results 1 – 1 of 1) sorted by relevance
327 export function gcd(a, b) { function329 return gcd(b, a % b);334 return (a * b) / gcd(a, b);
Completed in 4 milliseconds