gcd
import { gcd } from "https://raw.githubusercontent.com/JOTSR/Denum/master/mod.ts";It takes two or more numbers and returns the greatest common divisor of all of them
function gcd<T extends number | bigint>(...n: T[]): T;
import { gcd } from "https://raw.githubusercontent.com/JOTSR/Denum/master/mod.ts";It takes two or more numbers and returns the greatest common divisor of all of them