▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/number-of-common-factors/ Number of Common Factors - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 주어진 정수 a, b의 공약수를 반환하는 문제. class Solution: def commonFactors(self, a: int, b: int) -> int: a_div = [] cnt = 0 for i in range(1, a + 1)..