Problem Description
Given two positive integers a and b, return the number of common factors of a and b. An integer x is a common factor of a and b if x divides both a and b.
Key Insights
- Common factors of two numbers can be determined by finding the divisors of their greatest common divisor (GCD).
- The GCD can be computed efficiently using the Euclidean algorithm.
- The number of divisors of a number can be calculated by iterating up to its square root and checking for divisibility.
Space and Time Complexity
Time Complexity: O(sqrt(gcd(a, b)))
Space Complexity: O(1)
Solution
To solve this problem, we will:
- Calculate the GCD of the two numbers a and b using the Euclidean algorithm.
- Determine the number of divisors of the GCD by iterating from 1 to the square root of the GCD, checking for divisibility.
- Count each divisor and its complement (i.e., gcd / i) to account for pairs of divisors.