Class Solution
-
- All Implemented Interfaces:
public final class Solution2427 - Number of Common Factors\.
Easy
Given two positive integers
aandb, return the number of common factors ofaandb.An integer
xis a common factor ofaandbifxdivides bothaandb.Example 1:
Input: a = 12, b = 6
Output: 4
Explanation: The common factors of 12 and 6 are 1, 2, 3, 6.
Example 2:
Input: a = 25, b = 30
Output: 2
Explanation: The common factors of 25 and 30 are 1, 5.
Constraints:
1 <= a, b <= 1000
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final IntegercommonFactors(Integer a, Integer b)-
-
Method Detail
-
commonFactors
final Integer commonFactors(Integer a, Integer b)
-
-
-
-