Written by
최태열
on
on
[Python][프로그래머스][Level2] 예상 대진표
[Python][프로그래머스][Level2] 예상 대진표
코드
def solution(n,a,b):
answer=0
while a!=b:
answer+=1
a=sum(divmod(a,2))
b=sum(divmod(b,2))
return answer
Discussion and feedback