728x90
반응형
문제 출처: https://school.programmers.co.kr/learn/courses/30/lessons/12940
풀이:
def solution(x, y):
max_xy = max(x, y)
min_xy = min(x, y)
res= []
# 최대 공약수
while y > 0:
x, y = y, x % y
res = [x, max_xy * min_xy//x]
return res
유클리드 호제법을 사용하면 된다.
https://windy7271.tistory.com/122
https://windy7271.tistory.com/123
https://windy7271.tistory.com/124
반응형
댓글