![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbpIfha%2FbtsEigjHSPq%2F6pPr4mxtcgRgpSglZeB090%2Fimg.png)
Programmers / 2단계 / 예상 대진표 / python
·
코딩테스트/programmers (python)
코딩테스트 연습 - 예상 대진표 | 프로그래머스 스쿨 (programmers.co.kr) 나의 풀이 . 모범 답안 def solution(n,a,b): round = 0 while a != b: round += 1 a = (a+1) // 2 b = (b+1) // 2 return round