gist Greatest Common Factor using Euclid’s algorithm and, gasp, gotos to be fast (about 50% faster) By admin November 19, 2022November 19, 2022 0 minutes, 8 seconds Read static long gcf(long m, long n) { if (m < n) goto l2; l1: if ((m %= n) == 0) return n; l2: if ((n %= m) == 0) return m; goto l1; }