Skip to main content
Go to Latest
File
export const greatest_common_divisor = (a: number, b: number): number => { return b != 0 ? greatest_common_divisor(b, a % b) : a;};