■ 약수 리스트를 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import math def getDivisorList(value): divisorList = [] length = int(math.sqrt(value)) + 1 for i in range(1, length): if value % i == 0: divisorList.append(i) divisorList.append(value // i) divisorList.sort() return divisorList divisorList = getDivisorList(90) print(divisorList) """ [1, 2, 3, 5, 6, 9, 10, 15, 18, 30, 45, 90] """ |