OyaCode

含标签“Math”的文章

Greatest Common Divisor

TheoryConsider gcd(a, b), let's say a > b, then we have:gcd(a, b) == gcd(a - b, b)ProofConside...